Lines Matching defs:many1
88 /// *Note*: If the parser passed to `many1` accepts empty inputs
89 /// (like `alpha0` or `digit0`), `many1` will return an error,
94 /// use nom::multi::many1;
98 /// many1(tag("abc"))(s)
108 pub fn many1<I, O, E, F>(mut f: F) -> impl FnMut(I) -> IResult<I, Vec<O>, E>
359 /// *Note*: If the parser passed to `many1` accepts empty inputs
360 /// (like `alpha0` or `digit0`), `many1` will return an error,
492 /// *Note*: If the parser passed to `many1` accepts empty inputs
493 /// (like `alpha0` or `digit0`), `many1` will return an error,
740 /// *Note*: If the parser passed to `many1` accepts empty inputs
741 /// (like `alpha0` or `digit0`), `many1` will return an error,
826 /// *Note*: If the parser passed to `many1` accepts empty inputs
827 /// (like `alpha0` or `digit0`), `many1` will return an error,