Function flussab::text::signed_ascii_digits_multi[][src]

pub fn signed_ascii_digits_multi<I>(
    reader: &mut ByteReader<'_>,
    offset: usize
) -> (Option<I>, usize) where
    I: Zero + FromPrimitive + OverflowingAdd + OverflowingSub + OverflowingMul

Optimized version of signed_ascii_digits.

This is equivalent to signed_ascii_digits but tries to process more bytes at once. Depending on the size distribution of the parsed numbers this can be faster or slower than signed_ascii_digits, so both variants are provided.