pub fn digit() -> Digit
Parser for single digits.
assert_eq!( parser::digit().parse(b"12345"), Ok((1u8, &b"2345"[..])) );