Expand description
A wrapper around
std::collections::BTreeMap
that guarantees that it will never be empty.
Structs§
- BTree
Empty Error - An error returned when an operation associated with
BTreeMap1would result in it being empty. - BTree
Map1 - A wrapper around
std::collections::BTreeMapthat guarantees that it will never be empty. - Occupied
Entry - A view into an occupied entry in a
BTreeMap1. It is part of theEntryenum. - Vacant
Entry - A view into a vacant entry in a
BTreeMap1. It is part of theEntryenum.
Enums§
- Entry
- A view into a single entry in a map, which may either be vacant or occupied.