Expand description
A library of collections backed by flat contiguous arrays.
Structs§
- Array2
- Fixed-size two-dimensional array stored as a flat boxed slice in row-major order.
- OrdVec
- Ordered
Vec<T>
intended for fast lookup of items by key. - OrdVec
KeyFst - Key extraction function for
OrdVec
that returns the first element of a two-element tuple.
Traits§
- OrdVec
Key - Trait for
OrdVec
key extraction functions. If the key is not stored alongside data, use a tuple of (key, data) asT
andOrdVecKeyFst
asK
.