Module winter_utils::collections
source · Expand description
Feature-based re-export of common collection components.
When std feature is enabled, this module exports collections from the Rust standard library.
When alloc feature is enabled, same collected are provided without relying on the Rust
standard library.
Modules
- A contiguous growable array type with heap-allocated contents, written
Vec<T>.
Structs
- An ordered map based on a B-Tree.
- An ordered set based on a B-Tree.
- A contiguous growable array type, written as
Vec<T>, short for ‘vector’.