pub struct SparseIntervalMatrix<R, C>{
rows: IndexVec<R, IntervalSet<C>>,
column_size: usize,
}
Expand description
This data structure optimizes for cases where the stored bits in each row are expected to be highly contiguous (long ranges of 1s or 0s), in contrast to BitMatrix and SparseBitMatrix which are optimized for “random”/non-contiguous bits and cheap(er) point queries at the expense of memory usage.
Fields§
§rows: IndexVec<R, IntervalSet<C>>
§column_size: usize
Implementations§
Source§impl<R: Idx, C: Step + Idx> SparseIntervalMatrix<R, C>
impl<R: Idx, C: Step + Idx> SparseIntervalMatrix<R, C>
pub fn new(column_size: usize) -> SparseIntervalMatrix<R, C>
pub fn rows(&self) -> impl Iterator<Item = R>
pub fn row(&self, row: R) -> Option<&IntervalSet<C>>
fn ensure_row(&mut self, row: R) -> &mut IntervalSet<C>
pub fn union_row(&mut self, row: R, from: &IntervalSet<C>) -> boolwhere
C: Step,
pub fn union_rows(&mut self, read: R, write: R) -> boolwhere
C: Step,
pub fn insert_all_into_row(&mut self, row: R)
pub fn insert_range(&mut self, row: R, range: impl RangeBounds<C> + Clone)
pub fn insert(&mut self, row: R, point: C) -> bool
pub fn contains(&self, row: R, point: C) -> bool
Trait Implementations§
Auto Trait Implementations§
impl<R, C> Freeze for SparseIntervalMatrix<R, C>
impl<R, C> RefUnwindSafe for SparseIntervalMatrix<R, C>where
C: RefUnwindSafe,
impl<R, C> Send for SparseIntervalMatrix<R, C>where
C: Send,
impl<R, C> Sync for SparseIntervalMatrix<R, C>where
C: Sync,
impl<R, C> Unpin for SparseIntervalMatrix<R, C>where
C: Unpin,
impl<R, C> UnwindSafe for SparseIntervalMatrix<R, C>where
C: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> Pointable for T
impl<T> Pointable for T
Layout§
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.
Size: 32 bytes