Searched refs:alphanumeric0 (Results 1 - 2 of 2) sorted by relevance
/third_party/rust/crates/nom/src/character/ |
H A D | streaming.rs | 480 /// # use nom::character::streaming::alphanumeric0; 481 /// assert_eq!(alphanumeric0::<_, (_, ErrorKind)>("21cZ%1"), Ok(("%1", "21cZ"))); 482 /// assert_eq!(alphanumeric0::<_, (_, ErrorKind)>("&Z21c"), Ok(("&Z21c", ""))); 483 /// assert_eq!(alphanumeric0::<_, (_, ErrorKind)>(""), Err(Err::Incomplete(Needed::new(1)))); 485 pub fn alphanumeric0<T, E: ParseError<T>>(input: T) -> IResult<T, T, E> in alphanumeric0() functions
|
H A D | complete.rs | 549 /// # use nom::character::complete::alphanumeric0; 551 /// alphanumeric0(input) 558 pub fn alphanumeric0<T, E: ParseError<T>>(input: T) -> IResult<T, T, E> in alphanumeric0() functions
|
Completed in 4 milliseconds