This library provides a data view for reading and writing data in a byte array.

This library requires feature(genericconstexprs) to be enabled. whice is a nightly feature.

So you need nightly compiler to use this library.

By default, this library uses little endian as the default endian. But you can override the endian by using BE (for big endian) or NE (for native endian) in fetures flag.

For example, if you want to use big endian, toml data-view = { version = "0.1", features = ["BE"] }

It also works with [no_std] environment.

Example

```rust use data_view::DataView;

let mut buf: [u8; 16] = [0; 16];

buf.write::(0, 42); buf.write::(2, 123);

asserteq!(buf.read::(0), 42); asserteq!(buf.read::(2), 123); ```