Crates.io | tinybitset |
lib.rs | tinybitset |
version | 0.0.2 |
source | src |
created_at | 2023-12-15 13:00:34.425583 |
updated_at | 2024-10-09 14:09:45.895069 |
description | Generic implementation of small, fixed size, copyable bitsets |
homepage | https://github.com/moia-oss/tinybitset |
repository | https://github.com/moia-oss/tinybitset |
max_upload_size | |
id | 1070982 |
size | 50,170 |
This crate provides a small, fixed size bitset type that stores its data inline rather than on the heap. It uses const generics to have a single type that is generic over the size and the underlying storage type.
While the crate supports bitsets of any size, it is best used for cases where
the data is small enough to be cheaply copyable. For bitsets using over 256 bits
a heap-allocated implementation such as the one provided by
fixedbitset
might be more suitable.
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.