combpop 0.0.3

Type-based parser combinator
Documentation
  • Coverage
  • 25%
    23 out of 92 items documented1 out of 72 items with examples
  • Size
  • Source code size: 54.66 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 10.45 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 11s Average build duration of successful builds.
  • all releases: 11s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Homepage
  • qnighy/combpop
    1 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • qnighy

combpop: a type-based parser combinator for Rust

Aim

  • Monadic parser with consumed/empty and ok/error modes, as in Parsec
  • Support both on-memory streams and on-demand streams
  • Consistent semantics

Current Status

  • Still in a design phase
  • There are example Stream and Parser implementations, but the interfaces are still unstable.
  • A simple parser for \w+ works now.