Note: This crate is still in early development!
This library provides a simple to user interface to manipulate memory mapped memory by forcing the usage of Rust's strong typing system. It's a simple abstraction over the mmap
crate.
It further abstracts the memory mapped region by also supporting iterators and easy local updates.
Example usage:
```rust use easy_mmap::EasyMmapBuilder; use mmap::MapOption;
fn main() {
let map = &mut EasyMmapBuilder::
map.update_each(|i, _| i as u32);
map.iter().for_each(|v| {
println!("{}", v);
});
} ```