[][src]Crate alloc_many_collections

Parameterized collections on stable

Rewrite of the standard alloc crate that works with no_std binaries on stable (alloc can't be used on stable no_std because #[alloc_error_handler] is unstable).

Minimum Supported Rust Version (MSRV)

This crate is guaranteed to compile on stable Rust 1.33 and up. It might compile on older versions but that may change in any new patch release.

Modules

boxed

A pointer type for heap allocations

vec

A contiguous growable array type with heap-allocated contents, written Vec<T>.