[][src]Struct succinct_rs::succinct_bit_vector::SuccinctBitVectorBuilder

pub struct SuccinctBitVectorBuilder { /* fields omitted */ }

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]

Set 1 to i-th bit.

Panics

When i >= Length of bit vector to build.

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]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]