contiguous_collections 0.2.0

A library of collections backed by flat contiguous arrays
Documentation
  • Coverage
  • 100%
    7 out of 7 items documented1 out of 1 items with examples
  • Size
  • Source code size: 30.84 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 3.79 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 10s Average build duration of successful builds.
  • all releases: 10s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • timlathy/contiguous_collections
    0 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • timlathy

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.