contiguous_collections 0.1.0

A library of collections backed by flat contiguous arrays
Documentation

contiguous_collections

Crates.io Documentation

contiguous_collections is a small Rust library of collections backed by flat contiguous arrays:

  • Array2<T>, a fixed-size two-dimensional array of Ts stored as a flat boxed slice in row-major order.
  • OrdVec<T, K>, an ordered Vec<T> intended for fast lookup of items by key, with the key stored inside each T and retrieved via the key function K.