contiguous_collections
contiguous_collections is a small Rust library of collections backed by flat contiguous arrays:
Array2<T>, a fixed-size two-dimensional array ofTs stored as a flat boxed slice in row-major order.OrdVec<T, K>, an orderedVec<T>intended for fast lookup of items by key, with the key stored inside eachTand retrieved via the key functionK.