aboutsummaryrefslogtreecommitdiff
path: root/src/clojure
AgeCommit message (Collapse)Author
2011-11-14Started FUSE protocol definitions.David Barksdale
I'm trying out defrecord instead of plain maps, they are supposedly faster.
2011-11-14Broke out ByteBuffer specific parsing code into its own file.David Barksdale
2011-11-10Turn buffer-parser-m back into parser-m.David Barksdale
Turns out the ByteBuffer-specificity isn't needed in the monad definition nor in the parser combinators. These two concerns should be split in their own files.
2011-11-10Created a parser monad that operates on java.nio.ByteBuffer.David Barksdale
Hopefully this will be more efficient than wrapping memory into a lazy seq of bytes and then parsing uint32's etc out of that.
2011-11-10Moved clojure files into their own source directory tree.David Barksdale