Expand description
Crate with parts of Rust std library ( different implementations, features not yet stabilised etc ), in particular boxed::Box, collections::BTreeMap, collections::BTreeSet and vec::Vec.
Box only has minimal methods/traits implemented so far.
§Features
This crate supports the following cargo features:
serde: enables serialisation ofcollections::BTreeMapandcollections::BTreeSetvia serde crate.unsafe-optim: Enable unsafe optimisations in release mode.
Re-exports§
Modules§
- alloc
- Memory allocation.
- boxed
Boxsimilar tostd::boxed::Box.- collections
- Containers.
- vec
Vecsimilar tostd::vec::Vec. Not possible under stable Rust: Vec::const_make_global.