Struct indexical::IndexMatrix

source ·
pub struct IndexMatrix<R, C: IndexedValue, S: BitSet, P: PointerFamily> { /* private fields */ }
Expand description

An unordered collections of pairs (R, C), implemented with a sparse bit-matrix.

“Sparse” means “hash map from rows to bit-sets of columns”. Subsequently, only column types C must be indexed, while row types R only need be hashable.

Implementations§

source§

impl<R, C, S, P> IndexMatrix<R, C, S, P>
where R: PartialEq + Eq + Hash + Clone, C: IndexedValue, S: BitSet, P: PointerFamily,

source

pub fn new(col_domain: &P::Pointer<IndexedDomain<C>>) -> Self

Creates an empty matrix.

source

pub fn insert<M>(&mut self, row: R, col: impl ToIndex<C, M>) -> bool

Inserts a pair (row, col) into the matrix, returning true if self changed.

source

pub fn union_into_row(&mut self, into: R, from: &IndexSet<C, S, P>) -> bool

Adds all elements of from into the row into.

source

pub fn union_rows(&mut self, from: R, to: R) -> bool

Adds all elements from the row from into the row into.

source

pub fn row(&self, row: &R) -> impl Iterator<Item = &C> + '_

Returns an iterator over the elements in row.

source

pub fn rows(&self) -> impl Iterator<Item = (&R, &IndexSet<C, S, P>)> + '_

Returns an iterator over all rows in the matrix.

source

pub fn row_set(&self, row: &R) -> &IndexSet<C, S, P>

Returns the IndexSet for a particular row.

source

pub fn clear_row(&mut self, row: &R)

Clears all the elements from the row.

source

pub fn col_domain(&self) -> &P::Pointer<IndexedDomain<C>>

Returns the IndexedDomain for the column type.

Trait Implementations§

source§

impl<R, C, S, P> Clone for IndexMatrix<R, C, S, P>
where R: PartialEq + Eq + Hash + Clone, C: IndexedValue, S: BitSet, P: PointerFamily,

source§

fn clone(&self) -> Self

Returns a copy of the value. Read more
source§

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

Performs copy-assignment from source. Read more
source§

impl<R, C, S, P> Debug for IndexMatrix<R, C, S, P>

source§

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

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

impl<R, C, S, P> JoinSemiLattice for IndexMatrix<R, C, S, P>
where R: PartialEq + Eq + Hash + Clone, C: IndexedValue, S: BitSet, P: PointerFamily,

source§

fn join(&mut self, other: &Self) -> bool

Computes the least upper bound of two elements, storing the result in self and returning true if self has changed. Read more
source§

impl<R, C, S, P> PartialEq for IndexMatrix<R, C, S, P>
where R: PartialEq + Eq + Hash, C: IndexedValue, S: BitSet, P: PointerFamily,

source§

fn eq(&self, other: &Self) -> 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<R, C, S, P> Eq for IndexMatrix<R, C, S, P>
where R: PartialEq + Eq + Hash, C: IndexedValue, S: BitSet, P: PointerFamily,

Auto Trait Implementations§

§

impl<R, C, S, P> RefUnwindSafe for IndexMatrix<R, C, S, P>

§

impl<R, C, S, P> Send for IndexMatrix<R, C, S, P>
where R: Send, S: Send, <P as PointerFamily>::Pointer<IndexedDomain<C>>: Send,

§

impl<R, C, S, P> Sync for IndexMatrix<R, C, S, P>
where R: Sync, S: Sync, <P as PointerFamily>::Pointer<IndexedDomain<C>>: Sync,

§

impl<R, C, S, P> Unpin for IndexMatrix<R, C, S, P>
where R: Unpin, S: Unpin, <P as PointerFamily>::Pointer<IndexedDomain<C>>: Unpin,

§

impl<R, C, S, P> UnwindSafe for IndexMatrix<R, C, S, P>

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where 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 T
where 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 T
where 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 T
where 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 T
where 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.