parsy 0.2.1

An easy-to-use, efficient parser combinators library
Documentation
mod critical;
mod debug;
mod delimited_by;
mod fail;
mod flattened;
mod followed_by;
mod full;
mod ignore_then;
mod map;
mod not_followed_by;
mod or_not;
mod repeated;
mod separated_by;
mod silenced;
mod spanned;
mod then;
mod then_ignore;
mod to;
mod validate;

pub use critical::Critical;
pub use debug::{DebugType, Debugging};
pub use delimited_by::DelimitedBy;
pub use fail::Fail;
pub use flattened::Flattened;
pub use followed_by::FollowedBy;
pub use full::Full;
pub use ignore_then::IgnoreThen;
pub use map::Map;
pub use not_followed_by::NotFollowedBy;
pub use or_not::OrNot;
pub use repeated::Repeated;
pub use separated_by::SeparatedBy;
pub use silenced::Silenced;
pub use spanned::Spanned;
pub use then::Then;
pub use then_ignore::ThenIgnore;
pub use to::To;
pub use validate::Validate;