Lines Matching defs:Input
63 pub fn space<Input>() -> impl Parser<Input, Output = char, PartialState = ()> in space()
84 pub fn spaces<Input>() -> impl Parser<Input, Output = ()> in spaces()
100 pub fn newline<Input>() -> impl Parser<Input, Output = char, PartialState = ()> in newline()
117 pub fn crlf<Input>() -> impl Parser<Input, Output = char, PartialState = ()> in crlf()
133 pub fn tab<Input>() -> impl Parser<Input, Output = char, PartialState = ()> in tab()
151 pub fn upper<Input>() -> impl Parser<Input, Output = char, PartialState = ()> in upper()
169 pub fn lower<Input>() -> impl Parser<Input, Output = char, PartialState = ()> in lower()
188 pub fn alpha_num<Input>() -> impl Parser<Input, Output = char, PartialState = ()> in alpha_num()
207 pub fn letter<Input>() -> impl Parser<Input, Output = char, PartialState = ()> in letter()
223 pub fn oct_digit<Input>() -> impl Parser<Input, Output = char, PartialState = ()> in oct_digit()
239 pub fn hex_digit<Input>() -> impl Parser<Input, Output = char, PartialState = ()> in hex_digit()
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()