Expand description
Parsers recognizing numbers, complete input version
Functions
- be_f32DeprecatedRecognizes a big endian 4 bytes floating point number.
- be_f64DeprecatedRecognizes a big endian 8 bytes floating point number.
- be_i8DeprecatedRecognizes a signed 1 byte integer.
- be_i16DeprecatedRecognizes a big endian signed 2 bytes integer.
- be_i24DeprecatedRecognizes a big endian signed 3 bytes integer.
- be_i32DeprecatedRecognizes a big endian signed 4 bytes integer.
- be_i64DeprecatedRecognizes a big endian signed 8 bytes integer.
- be_i128DeprecatedRecognizes a big endian signed 16 bytes integer.
- be_u8DeprecatedRecognizes an unsigned 1 byte integer.
- be_u16DeprecatedRecognizes a big endian unsigned 2 bytes integer.
- be_u24DeprecatedRecognizes a big endian unsigned 3 byte integer.
- be_u32DeprecatedRecognizes a big endian unsigned 4 bytes integer.
- be_u64DeprecatedRecognizes a big endian unsigned 8 bytes integer.
- be_u128DeprecatedRecognizes a big endian unsigned 16 bytes integer.
- doubleDeprecatedRecognizes floating point number in text format and returns a f64.
- f32DeprecatedRecognizes a 4 byte floating point number
- f64DeprecatedRecognizes an 8 byte floating point number
- floatDeprecatedRecognizes floating point number in text format and returns a f32.
- hex_u32DeprecatedRecognizes a hex-encoded integer.
- i8DeprecatedRecognizes a signed 1 byte integer
- i16DeprecatedRecognizes a signed 2 byte integer
- i24DeprecatedRecognizes a signed 3 byte integer
- i32DeprecatedRecognizes a signed 4 byte integer
- i64DeprecatedRecognizes a signed 8 byte integer
- i128DeprecatedRecognizes a signed 16 byte integer
- le_f32DeprecatedRecognizes a little endian 4 bytes floating point number.
- le_f64DeprecatedRecognizes a little endian 8 bytes floating point number.
- le_i8DeprecatedRecognizes a signed 1 byte integer.
- le_i16DeprecatedRecognizes a little endian signed 2 bytes integer.
- le_i24DeprecatedRecognizes a little endian signed 3 bytes integer.
- le_i32DeprecatedRecognizes a little endian signed 4 bytes integer.
- le_i64DeprecatedRecognizes a little endian signed 8 bytes integer.
- le_i128DeprecatedRecognizes a little endian signed 16 bytes integer.
- le_u8DeprecatedRecognizes an unsigned 1 byte integer.
- le_u16DeprecatedRecognizes a little endian unsigned 2 bytes integer.
- le_u24DeprecatedRecognizes a little endian unsigned 3 byte integer.
- le_u32DeprecatedRecognizes a little endian unsigned 4 bytes integer.
- le_u64DeprecatedRecognizes a little endian unsigned 8 bytes integer.
- le_u128DeprecatedRecognizes a little endian unsigned 16 bytes integer.
- recognize_floatDeprecatedRecognizes floating point number in a byte string and returns the corresponding slice.
- recognize_float_partsDeprecatedRecognizes a floating point number in text format
- u8DeprecatedRecognizes an unsigned 1 byte integer
- u16DeprecatedRecognizes an unsigned 2 bytes integer
- u24DeprecatedRecognizes an unsigned 3 byte integer
- u32DeprecatedRecognizes an unsigned 4 byte integer
- u64DeprecatedRecognizes an unsigned 8 byte integer
- u128DeprecatedRecognizes an unsigned 16 byte integer