pstd/lib.rs
1#![deny(missing_docs)]
2#![cfg_attr(test, feature(btree_cursors, assert_matches))]
3
4//! Crate with parts of Rust std library ( different implementations, features not yet stabilised etc ), in particular [`collections::btree_map`].
5
6/// Memory allocation.
7pub mod alloc;
8
9/// Containers.
10pub mod collections {
11 pub mod btree_map;
12
13 pub use btree_map::BTreeMap;
14}