Collect all sequential digit bytes into $var (u8), and convert them into an unsigned integer.
If $on_byte is supplied, for each new byte execute $on_byte. Upon locating end-of-stream
execute $on_eos. If an overflow would occur, execute $on_overflow.
Collect all sequential digit bytes into $var (u16), and convert them into an unsigned integer.
If $on_byte is supplied, for each new byte execute $on_byte. Upon locating end-of-stream
execute $on_eos. If an overflow would occur, execute $on_overflow.
Collect all sequential digit bytes into $var (u32), and convert them into an unsigned integer.
If $on_byte is supplied, for each new byte execute $on_byte. Upon locating end-of-stream
execute $on_eos. If an overflow would occur, execute $on_overflow.
Collect all sequential digit bytes into $var (u64), and convert them into an unsigned integer.
If $on_byte is supplied, for each new byte execute $on_byte. Upon locating end-of-stream
execute $on_eos. If an overflow would occur, execute $on_overflow.
Collect all sequential hex bytes into $var (u8), and convert them into an unsigned integer. If
$on_byte is supplied, for each new byte execute $on_byte. Upon locating end-of-stream
execute $on_eos. If an overflow would occur, execute $on_overflow.
Collect all sequential hex bytes into $var (u16), and convert them into an unsigned integer. If
$on_byte is supplied, for each new byte execute $on_byte. Upon locating end-of-stream
execute $on_eos. If an overflow would occur, execute $on_overflow.
Collect all sequential hex bytes into $var (u32), and convert them into an unsigned integer. If
$on_byte is supplied, for each new byte execute $on_byte. Upon locating end-of-stream
execute $on_eos. If an overflow would occur, execute $on_overflow.
Collect all sequential hex bytes into $var (u64), and convert them into an unsigned integer. If
$on_byte is supplied, for each new byte execute $on_byte. Upon locating end-of-stream
execute $on_eos. If an overflow would occur, execute $on_overflow.