whitehole 0.8.0

A simple, fast, intuitive parser combinator framework for Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Combinators for parsing bytes.

mod eat;
mod next;
mod recur;
mod take;
mod till;
mod wrap;

pub use eat::*;
pub use next::*;
pub use recur::*;
pub use take::*;
pub use till::*;
pub use wrap::*;