Searched refs:many_m_n (Results 1 – 8 of 8) sorted by relevance
/third_party/rust/crates/nom/tests/ |
D | issues.rs | 173 use nom::multi::many_m_n; in issue_many_m_n_with_zeros() 174 let mut parser = many_m_n::<_, _, (), _>(0, 0, char('a')); in issue_many_m_n_with_zeros() 223 use nom::multi::many_m_n; in issue_1459_clamp_capacity() 224 let mut parser = many_m_n::<_, _, (), _>(usize::MAX, usize::MAX, char('a')); in issue_1459_clamp_capacity()
|
D | overflow.rs | 90 use nom::multi::many_m_n; in overflow_incomplete_many_m_n() 93 many_m_n(2, 4, length_data(be_u64))(i) in overflow_incomplete_many_m_n()
|
/third_party/rust/crates/rust-cexpr/src/ |
D | literal.rs | 47 use nom::multi::{fold_many0, many0, many1, many_m_n}; 188 map_opt(many_m_n(1, 3, octal), |v| c_raw_escape(v, 8)), in escaped_char() 193 preceded(char('u'), many_m_n(4, 4, hexadecimal)), in escaped_char() 197 preceded(char('U'), many_m_n(8, 8, hexadecimal)), in escaped_char()
|
/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, 209 many_m_n(2, 4, tag("Abcd"))(i) in many_m_n_test()
|
D | mod.rs | 380 pub fn many_m_n<I, O, E, F>( in many_m_n() function
|
/third_party/rust/crates/nom/doc/ |
D | choosing_a_combinator.md | 49 | [many_m_n](https://docs.rs/nom/latest/nom/multi/fn.many_m_n.html) | `many_m_n(1, 3, tag("ab"))` |…
|
D | nom_recipes.md | 159 `many_m_n` in the recipes.
|
/third_party/rust/crates/nom/ |
D | CHANGELOG.md | 39 - limit the initial capacity of the result vector of `many_m_n` to 64kiB 144 - `many_m_n` now fails if min > max
|