//! Nostd Structs contains data structures and algorithms that are intended to be used in a
//! minimal environment.
//!
//! This is useful for cases where you are compiling without access to the standard library, such as
//! in embedded environments.
//!
//! An additional benefit is that, since the memory allocators tend to be tied to the standard
//! library, the data structures in this crate are stack allocated, and do not require a heap.
//! This has performance benefits and leads to predictable memory usage, at the cost of not using
//! memory dynamically.
extern crate std;