bytetable
High-performance data structures indexed by u8. Uses #![no_std].
Usage
To use bytetable, first add this to your Cargo.toml:
[]
= "1"
Next, add this to your crate:
use ByteTable;
no_std support
bytetable is completely implemented in the no_std environment. The alloc feature (enabled by default) adds support for creating data structures on the heap with Box. Passing default-features = false disables the alloc feature, removing its dependency on extern crate alloc.
License
This project is licensed under the MIT license.
Contribution
Unless you explicitly state otherwise, any contribution intentionally submitted
for inclusion in bytetable by you, shall be licensed as MIT, without any
additional terms or conditions.