Crate contiguous_collections

Source
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.
OrdVecKeyFst
Key extraction function for OrdVec that returns the first element of a two-element tuple.

Traits§

OrdVecKey
Trait for OrdVec key extraction functions. If the key is not stored alongside data, use a tuple of (key, data) as T and OrdVecKeyFst as K.