[−][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>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
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,