Hi all,
I am a new to RUST and I have to build a system that uses very large bit arrays.
My question is: How can I implement these large bit arrays in RUST?
Thanks in advance
Hi all,
I am a new to RUST and I have to build a system that uses very large bit arrays.
My question is: How can I implement these large bit arrays in RUST?
Thanks in advance
https://crates.io/crates/bit-vec looks popular
Hi,
thanks for an answer, where can i get the Crate bit_vec, my test program can't find the Crate?
You add crates by:
[dependencies]
section (bit-vec = "0.5.0"
)extern crate bit_vec;
in root source code file of your project (lib.rs
/main.rs
)extern crate
), use bit_vec;
Thank You very much Kornel, it works!!!