Module winter_utils::collections[][src]

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

A map based on a B-Tree.

A set based on a B-Tree.

A contiguous growable array type, written as Vec<T>, short for ‘vector’.