Home
last modified time | relevance | path

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

/third_party/rust/crates/nom/examples/
Dstring.rs51 let parse_u32 = map_res(parse_delimited_hex, move |hex| u32::from_str_radix(hex, 16)); in parse_unicode() localVariable
57 map_opt(parse_u32, |value| std::char::from_u32(value))(input) in parse_unicode()
/third_party/rust/crates/nom/doc/
Dmaking_a_new_parser_from_scratch.md66 signature: `fn parse_u32(input: &[u8]) -> IResult<&[u8], u32>`.