kamo 0.9.4

A library to assist in the creation of an interpreter or compiler and its associated runtime.
Documentation
#[macro_use]
mod macros;

mod delimited;
pub use delimited::*;

mod error;
#[allow(clippy::module_name_repetitions)]
pub use error::SequenceError;

mod folded_list;
pub use folded_list::*;

mod folded_many;
pub use folded_many::*;

mod list;
pub use list::*;

mod many;
pub use many::*;

mod pair;
pub use pair::*;

mod preceded;
pub use preceded::*;

mod terminated;
pub use terminated::*;

mod tuple;
pub use tuple::*;

mod many_count;
pub use many_count::*;