Function digit1
fn digit1<Input, Error>(input: &mut Input) -> Result<<Input as Stream>::Slice, Error>
where
Input: StreamIsPartial + Stream,
<Input as Stream>::Token: AsChar,
Error: ParserError<Input>
Recognizes one or more ASCII numerical characters: '0'..='9'
Complete version: Will return an error if there's not enough input data, or the whole input if no terminating token is found (a non digit character).
[Partial version][crate::_topic::partial]: Will return Err(winnow::error::ErrMode::Incomplete(_)) if there's not enough input data,
or if no terminating token is found (a non digit character).
Effective Signature
Assuming you are parsing a &str [Stream]:
# use *;;
#
Example
# use *;
# use digit1;
assert_eq!;
assert!;
assert!;
# use *;
# use ;
# use Partial;
# use digit1;
assert_eq!;
assert!;
assert_eq!;
Parsing an integer
You can use digit1 in combination with Parser::try_map to parse an integer:
# use *;
# use digit1;
assert_eq!;
assert_eq!;
assert!;