Crate fast_input[][src]

Structs

FastInput

Simplifies reading and parsing of known input in a speedy fashion.

Str

Allows reading of string slices (&str). The standard library does not provide a FromStr implementation for &str. The Str type newtypes &str and implements FastParse and Deref<Target = &str>.

Traits

FastParse

Helper trait for parsing. Mainly used to avoid repeating type constraints.