@hackage kangaroo0.3.0

Binary parsing with random access.

Binary parsing with random access. The target file to be parsed is loaded into memory at the start (represented as an IOUArray Int Word8). Parsing proceeds by moving a cursor around, the array is left intact. This allows _jumping_ inside the file and contrasts with other parser combinators that progress via consuming input.

* Caveat * - the above of course means that the target file is obliged to be small enough to fit into memory.

** MAJOR CAVEAT ** - kangaroo is somewhat half-baked at the moment - the parsing machinery seems good but the combinators and primitive parsers need more work. I've only released it on Hackage because I'm now using it with Hurdle which was already on Hackage.

Currently kangaroo is twinned with its own library of formatting combinators, at some point this is likely to be put into its own package

Changelog:

  1. 3.0 Documented the primitive parsers. char renamed anyChar to match Parsec's convention. Rationalized exports from ParseMonad module.

  2. 2.0 Changes to ParseMonad - parsing within a region simplified, temporarily added JoinPrint.

  3. 1.0 First version.

  • Installation

  • Dependencies (0)

  • Dependents (0)