Crate linear_collections

source ·

Structs§

  • A map type backed by a Vector. Useful for small collections whose size can change.

Traits§

  • Provides methods for maps backed by linear data structures like arrays and vecs. Because arrays may implement this type, we cannot assume that implementors will be dynamically sized. Only methods which do not require manipulating the length or capacity of the store are provided here: this is to permit the implementation of fixed sized sets backed by arrays.