Expand description
Parsers recognizing numbers, complete input version
Functionsยง
- be_f32
Deprecated Recognizes a big endian 4 bytes floating point number. - be_f64
Deprecated Recognizes a big endian 8 bytes floating point number. - be_i8
Deprecated Recognizes a signed 1 byte integer. - be_i16
Deprecated Recognizes a big endian signed 2 bytes integer. - be_i24
Deprecated Recognizes a big endian signed 3 bytes integer. - be_i32
Deprecated Recognizes a big endian signed 4 bytes integer. - be_i64
Deprecated Recognizes a big endian signed 8 bytes integer. - be_i128
Deprecated Recognizes a big endian signed 16 bytes integer. - be_u8
Deprecated Recognizes an unsigned 1 byte integer. - be_u16
Deprecated Recognizes a big endian unsigned 2 bytes integer. - be_u24
Deprecated Recognizes a big endian unsigned 3 byte integer. - be_u32
Deprecated Recognizes a big endian unsigned 4 bytes integer. - be_u64
Deprecated Recognizes a big endian unsigned 8 bytes integer. - be_u128
Deprecated Recognizes a big endian unsigned 16 bytes integer. - double
Deprecated Recognizes floating point number in text format and returns a f64. - f32
Deprecated Recognizes a 4 byte floating point number - f64
Deprecated Recognizes an 8 byte floating point number - float
Deprecated Recognizes floating point number in text format and returns a f32. - hex_u32
Deprecated Recognizes a hex-encoded integer. - i8
Deprecated Recognizes a signed 1 byte integer - i16
Deprecated Recognizes a signed 2 byte integer - i24
Deprecated Recognizes a signed 3 byte integer - i32
Deprecated Recognizes a signed 4 byte integer - i64
Deprecated Recognizes a signed 8 byte integer - i128
Deprecated Recognizes a signed 16 byte integer - le_f32
Deprecated Recognizes a little endian 4 bytes floating point number. - le_f64
Deprecated Recognizes a little endian 8 bytes floating point number. - le_i8
Deprecated Recognizes a signed 1 byte integer. - le_i16
Deprecated Recognizes a little endian signed 2 bytes integer. - le_i24
Deprecated Recognizes a little endian signed 3 bytes integer. - le_i32
Deprecated Recognizes a little endian signed 4 bytes integer. - le_i64
Deprecated Recognizes a little endian signed 8 bytes integer. - le_i128
Deprecated Recognizes a little endian signed 16 bytes integer. - le_u8
Deprecated Recognizes an unsigned 1 byte integer. - le_u16
Deprecated Recognizes a little endian unsigned 2 bytes integer. - le_u24
Deprecated Recognizes a little endian unsigned 3 byte integer. - le_u32
Deprecated Recognizes a little endian unsigned 4 bytes integer. - le_u64
Deprecated Recognizes a little endian unsigned 8 bytes integer. - le_u128
Deprecated Recognizes a little endian unsigned 16 bytes integer. - recognize_
float Deprecated Recognizes floating point number in a byte string and returns the corresponding slice. - recognize_
float_ parts Deprecated Recognizes a floating point number in text format - u8
Deprecated Recognizes an unsigned 1 byte integer - u16
Deprecated Recognizes an unsigned 2 bytes integer - u24
Deprecated Recognizes an unsigned 3 byte integer - u32
Deprecated Recognizes an unsigned 4 byte integer - u64
Deprecated Recognizes an unsigned 8 byte integer - u128
Deprecated Recognizes an unsigned 16 byte integer