u8to64_le

Function u8to64_le 

Source
pub unsafe fn u8to64_le(buf: &[u8], start: usize, len: usize) -> u64
Expand description

Loads a u64 using up to 7 bytes of a byte slice.

ยงSafety

The caller must ensure that start + len <= buf.len() and len < 8.