Module chomp::prelude [] [src]

Basic prelude.

Reexports

pub use parsers::{any, eof, not_token, peek, peek_next, run_scanner, satisfy, satisfy_with, scan, skip_while, string, take, take_remainder, take_till, take_while, take_while1, token};
pub use parsers::{SimpleResult};
pub use combinators::{count, option, or, many, many1, sep_by, sep_by1, many_till, skip_many, skip_many1, matched_by};
pub use types::{Buffer, Input, U8Input, ParseResult};

Structs

Error

Common error for the basic Chomp parsers.

Functions

parse_only

Runs the given parser on the supplied finite input.

parse_only_str

Runs the given parser on the supplied string.