Function tarrasque::le_i64 [] [src]

pub fn le_i64(bytes: &[u8]) -> i64

Returns the first eight bytes in the supplied slice as a little-endian i64.

Example

let bytes = &[1, 2, 3, 4, 5, 6, 7, 8];
assert_eq!(le_i64(bytes), 0x0807060504030201);