pub type LinearMapView<K, V> = LinearMapInner<K, V, ViewStorage<K, V>>;
Expand description
A dynamic capacity map/dictionary that performs lookups via linear search.
Note that as this map doesn’t use hashing so most operations are O(n) instead of O(1).
Aliased Type§
pub struct LinearMapView<K, V> { /* private fields */ }