cds
implements handy data structures written for speed and ergonomic API.
SpareMemoryPolicy
- a custom policy for handling spare memory in collectionsLengthType
- a customizable type to track fixed-capacity collection length
(allows creation of very compact collection types)ArrayVec
- an array with vector-like APIEvery data structure has a corresponding crate feature written in all lowercase.
For example, arrayvec
enables ArrayVec
. None of the data structures is enabled by default.
Additionally, the following crate features are available:
std
- enables usage of the Rust standard library.
Currently, this feature affects only error types to implement the std::error::Error
trait,
which is not available in core
.
Without this feature the crate is no_std
.
The documentation is @ docs.rs/cds
ArrayString
- an array with string-like APISmallVec
- a vector with inline capacity to avoid heap allocationSmallString
- a string with inline capacity to avoid heap allocationThe changelog is maintained in CHANGELOG.md
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.