Searched refs:fold_many0 (Results 1 – 13 of 13) sorted by relevance
/third_party/rust/crates/nom/benchmarks/benches/ |
D | arithmetic.rs | 12 multi::fold_many0, 40 fold_many0( in term() 55 fold_many0( in expr()
|
D | json.rs | 14 multi::{fold_many0, separated_list0}, 90 fold_many0(character, String::new, |mut string, c| { in string()
|
/third_party/rust/crates/nom/tests/ |
D | arithmetic.rs | 7 multi::fold_many0, 38 fold_many0( in term() 54 fold_many0( in expr()
|
D | reborrow_fold.rs | 9 use nom::multi::fold_many0; 26 fold_many0(atom(tomb), String::new, |acc: String, next: String| { in list()
|
D | json.rs | 9 multi::{fold_many0, separated_list0}, 85 fold_many0(character, String::new, |mut string, c| { in string()
|
/third_party/rust/crates/nom/fuzz/fuzz_targets/ |
D | fuzz_arithmetic.rs | 13 multi::fold_many0, 71 let res = fold_many0( in term() 99 let res = fold_many0( in expr()
|
/third_party/rust/crates/rust-cexpr/src/ |
D | expr.rs | 34 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()
|
D | literal.rs | 47 use nom::multi::{fold_many0, many0, many1, many_m_n}; 222 fold_many0( in c_string()
|
/third_party/rust/crates/nom/examples/ |
D | string.rs | 19 use nom::multi::fold_many0; 141 let build_string = fold_many0(
|
/third_party/rust/crates/nom/src/multi/ |
D | tests.rs | 15 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()
|
D | mod.rs | 689 pub fn fold_many0<I, O, E, F, G, H, R>( in fold_many0() function
|
/third_party/rust/crates/nom/doc/ |
D | choosing_a_combinator.md | 52 | [fold_many0](https://docs.rs/nom/latest/nom/multi/fn.fold_many0.html) | `fold_many0(be_u8, \|\| 0…
|
/third_party/rust/crates/nom/ |
D | CHANGELOG.md | 378 - 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…
|