Skip to content

Latest commit

 

History

History
39 lines (24 loc) · 908 Bytes

File metadata and controls

39 lines (24 loc) · 908 Bytes

BitArrayList

The library provides a grow-able array data structure which can represent a list of bits. So far there is FIFO functionality, bits can be set ON and OFF and two BitArrayLists can be concatenated.

Build Status

Documentation

To view project documentation first build it:

$ cargo doc

and then open the following file with a web browser:

[crate root]/target/doc/bit_array_list/index.html

Usage

Add this entry under Cargo.toml dependencies section name:

[dependencies]
bit_array_list = { git = "https://github.com/konstantindt/bit-array-list" }

and the following to your crate root:

extern crate bit_array_list;

License

See the LICENSE file for license rights and limitations (MIT).