[−][src]Struct succinct_rs::succinct_bit_vector::SuccinctBitVectorBuilder
Builder of SuccinctBitVector.
Methods
impl SuccinctBitVectorBuilder
[src][−]
pub fn from_length(length: u64) -> Self
[src][−]
Prepares a bit vector of length
, fulfilled with 0.
pub fn from_bit_string(bs: BitString) -> Self
[src][−]
Prepares a bit vector from BitString representation.
pub fn set_bit(&mut self, i: u64) -> &mut Self
[src][−]
pub fn add_bit(&mut self, b: bool) -> &mut Self
[src][−]
Add '0' or '1' to current bit vector.
WARNING: Do not use with from_bit_string(). It leads to string concatenation and should be too slow.
pub fn build(&self) -> SuccinctBitVector
[src][−]
Build SuccinctBitVector in O(N) time (where N is the length of the bit vector to build).
Panics
When length
== 0.
Auto Trait Implementations
impl Send for SuccinctBitVectorBuilder
impl Sync for SuccinctBitVectorBuilder
Blanket Implementations
impl<T> From<T> for T
[src][+]
impl<T, U> Into<U> for T where
U: From<T>,
[src][+]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src][+]
U: Into<T>,
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src][+]
U: TryFrom<T>,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized,
[src][+]
T: 'static + ?Sized,