Expand description
Collection types.
Modules§
- binary_
heap - A priority queue implemented with a binary heap.
- btree_
map - An ordered map based on a B-Tree.
- btree_
set - An ordered set based on a B-Tree.
- hash_
map - A hash map implemented with quadratic probing and SIMD lookup.
- hash_
set - A hash set implemented as a
HashMap
where the value is()
. - linked_
list - A doubly-linked list with owned nodes.
- vec_
deque - A double-ended queue (deque) implemented with a growable ring buffer.
Structs§
- BTree
Map - An ordered map based on a B-Tree.
- BTree
Set - An ordered set based on a B-Tree.
- Binary
Heap - A priority queue implemented with a binary heap.
- HashMap
- A hash map implemented with quadratic probing and SIMD lookup.
- HashSet
- A hash set implemented as a
HashMap
where the value is()
. - Linked
List - A doubly-linked list with owned nodes.
- TryReserve
Error - The error type for
try_reserve
methods. - VecDeque
- A double-ended queue implemented with a growable ring buffer.
Enums§
- Bound
- An endpoint of a range of keys.
- TryReserve
Error Kind Experimental - Details of the allocation that caused a
TryReserveError