Skip to content

A Rust contiguous grow-able array data structure of bits.

License

Notifications You must be signed in to change notification settings

konstantindt/bit-array-list

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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).

About

A Rust contiguous grow-able array data structure of bits.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages