Expand description
Crate with parts of Rust std library ( different implementations, features not yet stabilised etc ), in particular Box, Vec and
collections::{ BTreeMap, BTreeSet, HashMap, HashSet }.
Box only has minimal methods/traits implemented so far.
HashMap and HashSet are imported from the hashbrown crate.
§Features
This crate supports the following cargo features:
Re-exports§
Modules§
- alloc
- Memory allocation.
- boxed
Boxsimilar tostd::boxed::Box.- collections
- Containers: BTreeMap, BTreeSet, HashMap and HashSet.
- vec
Vecsimilar tostd::vec::Vec. Not possible under stable Rust: Vec::const_make_global.