pub fn digit0<T, E>(base: u32) -> impl FnMut(T) -> IResult<T, T, E>where
    T: InputTakeAtPosition<Item = LocatedSegment>,
    E: ParseError<T>,
Expand description

Recognizes zero or more digits in the given base. ASCII characters 0-9. a-z, A-Z are considered digits, depending on the base.