Home
last modified time | relevance | path

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

/third_party/rust/crates/nom/benchmarks/benches/
Darithmetic.rs12 multi::fold_many0,
40 fold_many0( in term()
55 fold_many0( in expr()
Djson.rs14 multi::{fold_many0, separated_list0},
90 fold_many0(character, String::new, |mut string, c| { in string()
/third_party/rust/crates/nom/tests/
Darithmetic.rs7 multi::fold_many0,
38 fold_many0( in term()
54 fold_many0( in expr()
Dreborrow_fold.rs9 use nom::multi::fold_many0;
26 fold_many0(atom(tomb), String::new, |acc: String, next: String| { in list()
Djson.rs9 multi::{fold_many0, separated_list0},
85 fold_many0(character, String::new, |mut string, c| { in string()
/third_party/rust/crates/nom/fuzz/fuzz_targets/
Dfuzz_arithmetic.rs13 multi::fold_many0,
71 let res = fold_many0( in term()
99 let res = fold_many0( in expr()
/third_party/rust/crates/rust-cexpr/src/
Dexpr.rs34 use nom::multi::{fold_many0, many0, separated_list0};
307 fold_many0( in mul_div_rem()
326 fold_many0( in add_sub()
344 numeric(fold_many0( in shl_shr()
362 numeric(fold_many0( in and()
374 numeric(fold_many0( in xor()
386 numeric(fold_many0( in or()
Dliteral.rs47 use nom::multi::{fold_many0, many0, many1, many_m_n};
222 fold_many0( in c_string()
/third_party/rust/crates/nom/examples/
Dstring.rs19 use nom::multi::fold_many0;
141 let build_string = fold_many0(
/third_party/rust/crates/nom/src/multi/
Dtests.rs15 count, fold_many0, fold_many1, fold_many_m_n, length_count, many0, many1, many_m_n, many_till,
415 fold_many0(tag("abcd"), Vec::new, fold_into_vec)(i) in fold_many0_test()
418 fold_many0(tag(""), Vec::new, fold_into_vec)(i) in fold_many0_test()
Dmod.rs689 pub fn fold_many0<I, O, E, F, G, H, R>( in fold_many0() function
/third_party/rust/crates/nom/doc/
Dchoosing_a_combinator.md52 | [fold_many0](https://docs.rs/nom/latest/nom/multi/fn.fold_many0.html) | `fold_many0(be_u8, \|\| 0…
/third_party/rust/crates/nom/
DCHANGELOG.md378 - use `fold_many0c` in the `fold_many0` macro
1016 - `fold_many0!`, `fold_many1!` and `fold_many_m_n!` will take a parser, an initial value and a comb…