Skip to main content

Crate pstd

Crate pstd 

Source
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:

Re-exports§

pub use vec::Vec;
pub use boxed::Box;

Modules§

alloc
Memory allocation.
boxed
Box similar to std::boxed::Box.
collections
Containers.
vec
Vec similar to std::vec::Vec. Not possible under stable Rust: Vec::const_make_global.

Macros§

vec
Creates a Vec containing the arguments.