Lines Matching defs:Output
63 pub fn space<Input>() -> impl Parser<Input, Output = char, PartialState = ()> in space() argument
84 pub fn spaces<Input>() -> impl Parser<Input, Output = ()> in spaces() argument
100 pub fn newline<Input>() -> impl Parser<Input, Output = char, PartialState = ()> in newline() argument
117 pub fn crlf<Input>() -> impl Parser<Input, Output = char, PartialState = ()> in crlf() argument
133 pub fn tab<Input>() -> impl Parser<Input, Output = char, PartialState = ()> in tab() argument
151 pub fn upper<Input>() -> impl Parser<Input, Output = char, PartialState = ()> in upper() argument
169 pub fn lower<Input>() -> impl Parser<Input, Output = char, PartialState = ()> in lower() argument
188 pub fn alpha_num<Input>() -> impl Parser<Input, Output = char, PartialState = ()> in alpha_num() argument
207 pub fn letter<Input>() -> impl Parser<Input, Output = char, PartialState = ()> in letter() argument
223 pub fn oct_digit<Input>() -> impl Parser<Input, Output = char, PartialState = ()> in oct_digit() argument
239 pub fn hex_digit<Input>() -> impl Parser<Input, Output = char, PartialState = ()> in hex_digit() argument
260 pub fn string<'a, Input>(s: &'static str) -> impl Parser<Input, Output = &'a str> in string() argument
281 pub fn string_cmp<'a, C, Input>(s: &'static str, cmp: C) -> impl Parser<Input, Output = &'a str> in string_cmp() argument