diskallocator 0.1.1

For really big vectors: allocate on disk
Documentation
1
2
3
4
5
6
7
#![warn(missing_docs)]
#![doc = include_str!("../README.md")]
#![feature(allocator_api)]
#![feature(pointer_byte_offsets)]
mod diskalloc;

pub use diskalloc::DiskAlloc;