pub struct DArrayIndex { /* private fields */ }
Expand description

The index implementation of DArray separated from the bit vector.

Implementations§

source§

impl DArrayIndex

source

pub fn new(bv: &BitVector, over_one: bool) -> Self

Creates a new DArrayIndex from input bit vector bv.

Arguments
  • bv: Input bit vector.
  • over_one: Flag to build the index for ones.
source

pub unsafe fn select(&self, bv: &BitVector, k: usize) -> Option<usize>

Searches the k-th iteger.

Arguments
  • bv: Bit vector used in construction.
  • k: Select query.
Complexity
  • Constant
Safety

bv must be the one used in construction.

Examples
use sucds::bit_vectors::{BitVector, darray::inner::DArrayIndex};

let bv = BitVector::from_bits([true, false, false, true]);
let da = DArrayIndex::new(&bv, true);

unsafe {
    assert_eq!(da.select(&bv, 0), Some(0));
    assert_eq!(da.select(&bv, 1), Some(3));
    assert_eq!(da.select(&bv, 2), None);
}

You can perform selections over unset bits by specifying Self::new(&bv, over_one=false).

use sucds::bit_vectors::{BitVector, darray::inner::DArrayIndex};

let bv = BitVector::from_bits([true, false, false, true]);
let da = DArrayIndex::new(&bv, false);

unsafe {
    assert_eq!(da.select(&bv, 0), Some(1));
    assert_eq!(da.select(&bv, 1), Some(2));
    assert_eq!(da.select(&bv, 2), None);
}
source

pub const fn num_ones(&self) -> usize

Gets the number of integers.

Trait Implementations§

source§

impl Clone for DArrayIndex

source§

fn clone(&self) -> DArrayIndex

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for DArrayIndex

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for DArrayIndex

source§

fn default() -> DArrayIndex

Returns the “default value” for a type. Read more
source§

impl PartialEq for DArrayIndex

source§

fn eq(&self, other: &DArrayIndex) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Serializable for DArrayIndex

source§

fn serialize_into<W: Write>(&self, writer: W) -> Result<usize>

Serializes the data structure into the writer, returning the number of serialized bytes. Read more
source§

fn deserialize_from<R: Read>(reader: R) -> Result<Self>

Deserializes the data structure from the reader. Read more
source§

fn size_in_bytes(&self) -> usize

Returns the number of bytes to serialize the data structure.
source§

fn size_of() -> Option<usize>

Returns the size of a primitive type in bytes (if the type is so).
source§

impl Eq for DArrayIndex

source§

impl StructuralEq for DArrayIndex

source§

impl StructuralPartialEq for DArrayIndex

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.