coca - Data Structures with Constant Capacity

Allocation-free data structures that make do with the memory they're given.

This makes their temporal performance more consistent, and the memory footprint dead-simple to predict - but it also means insertions can easily fail, so you'll need proof you can't break the limit, or a graceful recovery path, which is good practice in memory-constrained environments anyway.

Currently, two main components are provided:

This crate is still in early development! Currently on the roadmap (in no particular order):

Constructive Feedback and Contributions Welcome!

Getting Started

To add coca as a dependency, add this to your project's Cargo.toml:

toml [dependencies] coca = "0.1"

Optional Features

License

Licensed under either Apache License, Version 2.0 or Zlib license at your option.

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this crate by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.