Crate small_ord_set

Source
Expand description

This crate provides the SmallOrdSet type, a set data-structure represented by a sorted SmallVec.

Structs§

KeyValuePair
A key-value pair. When used as the element type of a SmallOrdSet, it acts as a map.
OccupiedEntry
A view into an occupied entry in a SmallOrdSet. It is part of the Entry enum.
SmallOrdSet
A set represented by a sorted SmallVec.
VacantEntry
A view into a vacant entry in a HashMap. It is part of the Entry enum.

Enums§

Entry
A view into a single entry in a set, which may either be vacant or occupied.