contiguous_collections

Crates.iocontiguous_collections
lib.rscontiguous_collections
version0.2.0
sourcesrc
created_at2024-09-21 12:10:38.886512
updated_at2024-09-22 18:08:09.076857
descriptionA library of collections backed by flat contiguous arrays
homepage
repositoryhttps://github.com/timlathy/contiguous_collections
max_upload_size
id1382160
size29,504
Tim (timlathy)

documentation

README

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.
Commit count: 14

cargo fmt