byte-io: a simple crate for read/write numbers to/from binary.

This crate only contains 4 functions:

Please notice that byte-io does NOT focus on efficiency, which means that it may be slow while handling big streams (e.g. hundreds of Mbytes or more).

How to use

Add the following line to your [dependencies] section in Cargo.toml

toml byte-io = { git = "https://github.com/zhaihj/byte-io-rust", branch= "master" }

or you can also download it from crates.io:

toml byte-io = "0.1"

Examples:

Read from a slice is simple:

```rust use byte_io::*;

fn main() { let data = [0x00, 0x00, 0x01, 0x01, 0xAB, 0xCD, 0xEF, 0x89]; asserteq!(readbe::(&data), 0x0101); asserteq!(readbe::(&data[4..]), 0xABCD); asserteq!(readle::(&data[4..]), 0xCDAB); asserteq!(readle::(&data[4..]), 0xAB); }

```

Write is also easy:

```rust use byte_io::*;

fn main() { let mut buf = [0u8;8]; writebe(&0xABCDEFu32, &mut buf); asserteq!(buf, [0x00, 0xAB, 0xCD, 0xEF, 0x00, 0x00, 0x00, 0x00]); writele(&0xABCDEFu32, &mut buf[4..]); asserteq!(buf, [0x00, 0xAB, 0xCD, 0xEF, 0xEF, 0xCD, 0xAB, 0x00]); } ```

Moreover, you can even read/write Vec<T>:

```rust use byte_io::*;

fn main() { let mut buf = [0u8;8]; let data = vec![0x1234u16,0x5678u16]; writele(&data, &mut buf); asserteq!(buf, [0x34, 0x12, 0x78, 0x56, 0x00, 0x00, 0x00, 0x00]); asserteq!(data, readle::>(&buf[0..4])); let u32vec = readbe::>(&buf[4..]); asserteq!(u32vec.len(), 1); asserteq!(u32vec.first(), Some(&0)); } ```

The following code also works:

```rust use byte_io::*;

fn main() { let buf = [0xAA, 0xBB, 0xCC, 0xDD]; asserteq!(u32::fromu8_be(&buf), 0xAABBCCDD); } ```