Function parse_uint_from_iter_with_radix

Source
pub fn parse_uint_from_iter_with_radix<T: Integer + CheckedAdd + CheckedMul + FromPrimitive>(
    chars: &mut dyn PeekableIterator<Item = char>,
    radix: Option<u32>,
    whitespace: bool,
) -> Option<T>
Expand description

Parse uint values from an iterator with a given radix.