Crate fast_input

Source

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 FParse and Deref<Target = &str>.

Traits§

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