bytetable 1.0.2

High-performance data structures indexed by u8
Documentation
bytetable-1.0.2 has been yanked.

bytetable

High-performance data structures indexed by u8. Uses #![no_std].

crates.io Documentation MIT licensed Dependency Status Downloads

Usage

To use bytetable, first add this to your Cargo.toml:

[dependencies]
bytetable = "1"

Next, add this to your crate:

use byte_table::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.