Home
last modified time | relevance | path

Searched refs:map_parser (Results 1 – 1 of 1) sorted by relevance

/external/rust/crates/nom/src/combinator/
Dmod.rs202 pub fn map_parser<I: Clone, O1, O2, E: ParseError<I>, F, G>(first: F, second: G) -> impl Fn(I) -> I… in map_parser() function
222 map_parser(first, second)(input) in map_parserc()
825 … assert_parse!(map_parser(take(4usize), take(2usize))(input), Ok((&[104][..], &[100, 101][..]))); in test_map_parser()