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 type here implement [`Deref<Target = [T]>`](std::ops::Deref) (and DerefMut), which
9//! saves me from writing some of the more repetitive functionality.
10
11// pub mod binary_tree;
12pub mod contiguous;
13pub mod hash;
14pub mod linked;
15pub mod traits;