pub fn unsigned<'a, N, F, P, I, C>(parser: F) -> impl Parser<I, Output = N> + 'aExpand description
Takes a function returns a integer parser, returns a parser of unsigned, positive integer.
This function is for symmetry with the function signed, so like it, the taken function
must return negative result if the argument is true, and vice versa.