Provides convenience methods for reading numbers and slices from a slice
Use byteorder_slice = "1.0.0"
if you want reads to return an Option.
Use byteorder_slice = "2.0.0"
if you want reads to return a std::io::Result.
```rust use byteorderslice::{BigEndian, LittleEndian, ReadSlice} let data = vec![0u8; 100]; let src = &mut &data[..];
let a = src.readu8().unwrap();
let b = src.readu32::