std::collections¶
Status: shipped
Built-in container types.
Public items¶
| Name | Kind | Description |
|---|---|---|
Vec |
type | Growable contiguous sequence. |
VecDeque |
type | Double-ended queue backed by a ring buffer. |
HashMap |
type | Hash map backed by the swiss-table layout. |
BTreeMap |
type | Ordered map. |
HashSet |
type | Unordered set built on top of HashMap. |
BTreeSet |
type | Ordered set built on top of BTreeMap. |