Expand description
Parsers for decoding numbers in big-endian or little-endian order.
Functionsยง
- be_f32
 - Reads a i32 out of the byte stream with the specified endianess
 - be_f64
 - Reads a i64 out of the byte stream with the specified endianess
 - be_i16
 - Reads a i16 out of the byte stream with the specified endianess
 - be_i32
 - Reads a i32 out of the byte stream with the specified endianess
 - be_i64
 - Reads a i64 out of the byte stream with the specified endianess
 - be_u16
 - Reads a u16 out of the byte stream with the specified endianess
 - be_u32
 - Reads a u32 out of the byte stream with the specified endianess
 - be_u64
 - Reads a u64 out of the byte stream with the specified endianess
 - le_f32
 - Reads a i32 out of the byte stream with the specified endianess
 - le_f64
 - Reads a i64 out of the byte stream with the specified endianess
 - le_i16
 - Reads a i16 out of the byte stream with the specified endianess
 - le_i32
 - Reads a i32 out of the byte stream with the specified endianess
 - le_i64
 - Reads a i64 out of the byte stream with the specified endianess
 - le_u16
 - Reads a u16 out of the byte stream with the specified endianess
 - le_u32
 - Reads a u32 out of the byte stream with the specified endianess
 - le_u64
 - Reads a u64 out of the byte stream with the specified endianess