Expand description
This crate provides the SmallOrdSet
type, a set data-structure
represented by a sorted SmallVec
.
Structs§
- KeyValue
Pair - A key-value pair. When used as the element type of a
SmallOrdSet
, it acts as a map. - Occupied
Entry - A view into an occupied entry in a
SmallOrdSet
. It is part of theEntry
enum. - Small
OrdSet - A set represented by a sorted
SmallVec
. - Vacant
Entry - A view into a vacant entry in a
HashMap
. It is part of theEntry
enum.
Enums§
- Entry
- A view into a single entry in a set, which may either be vacant or occupied.