standard_lib/collections/
mod.rs

1//! Various general-purpose collection types.
2//!
3//! # Purpose
4//! I wrote these types to learn about each of the data structures themselves, but also concepts
5//! such as pointers, allocations, iterators and hashing.
6//!
7//! # Method
8//! Applicable types here implement [`Deref<Target = [T]>`](std::ops::Deref) (and DerefMut), which
9//! saves me from writing some of the more repetitive functionality.
10#![cfg(feature = "collections")]
11
12// pub mod binary_tree;
13pub mod cons;
14pub mod contiguous;
15pub mod hash;
16pub mod linked;
17pub mod traits;