Lines Matching defs:Input
61 pub fn space<Input>() -> impl Parser<Input, Output = char, PartialState = ()> in space()
81 pub fn spaces<Input>() -> impl Parser<Input, Output = ()> in spaces()
96 pub fn newline<Input>() -> impl Parser<Input, Output = char, PartialState = ()> in newline()
112 pub fn crlf<Input>() -> impl Parser<Input, Output = char, PartialState = ()> in crlf()
127 pub fn tab<Input>() -> impl Parser<Input, Output = char, PartialState = ()> in tab()
144 pub fn upper<Input>() -> impl Parser<Input, Output = char, PartialState = ()> in upper()
161 pub fn lower<Input>() -> impl Parser<Input, Output = char, PartialState = ()> in lower()
179 pub fn alpha_num<Input>() -> impl Parser<Input, Output = char, PartialState = ()> in alpha_num()
197 pub fn letter<Input>() -> impl Parser<Input, Output = char, PartialState = ()> in letter()
212 pub fn oct_digit<Input>() -> impl Parser<Input, Output = char, PartialState = ()> in oct_digit()
227 pub fn hex_digit<Input>() -> impl Parser<Input, Output = char, PartialState = ()> in hex_digit()
247 pub fn string<'a, Input>(s: &'static str) -> impl Parser<Input, Output = &'a str> in string() argument
267 pub fn string_cmp<'a, C, Input>(s: &'static str, cmp: C) -> impl Parser<Input, Output = &'a str> in string_cmp()