Continuously read,write to memory using random offsets and lengths.
extern crate random_access_memory as ram;
let mut file = ram::Sync::default();
file.write(0, b"hello").unwrap();
file.write(5, b" world").unwrap();
let text = file.read(0, 11).unwrap();
assert_eq!(text, b"hello world");
$ cargo add random-access-memory
- Sync implementation.
- Async implementation (wait for futures 1.0.0).
MIT OR Apache-2.0