Skip to main content

Module ordered_set

Module ordered_set 

Source
Expand description

Insertion-order-preserving set that lives on the stack and spills to the heap.

SmallOrderedSet is a thin wrapper around SmallOrderedMap<T, (), N>, inheriting the insertion-order-preserving semantics and the stack→heap spill protocol defined in ordered_map.

Structs§

SetRefIter
A structure representing SetRefIter.
SmallOrderedSet
An insertion-order-preserving set that lives on the stack for up to N elements, then spills to a heap-backed ordermap::OrderMap.
SmallSetIntoIter
A structure representing SmallSetIntoIter.