Struct SparseColMatRef
pub struct SparseColMatRef<'nrows, 'ncols, 'a, I, E>{
symbolic: SymbolicSparseColMatRef<'nrows, 'ncols, 'a, I>,
values: SliceGroup<'a, E>,
}
Expand description
Immutable sparse matrix view with dimensions equal to the values tied to ('nrows, 'ncols)
, in column-major order.
Fields§
§symbolic: SymbolicSparseColMatRef<'nrows, 'ncols, 'a, I>
§values: SliceGroup<'a, E>
Implementations§
§impl<'nrows, 'ncols, 'a, I, E> SparseColMatRef<'nrows, 'ncols, 'a, I, E>
impl<'nrows, 'ncols, 'a, I, E> SparseColMatRef<'nrows, 'ncols, 'a, I, E>
pub fn new(
inner: SparseColMatRef<'a, I, E>,
nrows: Size<'nrows>,
ncols: Size<'ncols>,
) -> SparseColMatRef<'nrows, 'ncols, 'a, I, E>
pub fn new( inner: SparseColMatRef<'a, I, E>, nrows: Size<'nrows>, ncols: Size<'ncols>, ) -> SparseColMatRef<'nrows, 'ncols, 'a, I, E>
Returns a new matrix view after checking that its dimensions match the
dimensions tied to ('nrows, 'ncols)
.
pub fn into_inner(self) -> SparseColMatRef<'a, I, E>
pub fn into_inner(self) -> SparseColMatRef<'a, I, E>
Returns the unconstrained matrix.
pub fn values_of_col(
&self,
j: Idx<'ncols, usize>,
) -> <<E as Entity>::Group as ForType>::FaerOf<&'a [<E as Entity>::Unit]>
pub fn values_of_col( &self, j: Idx<'ncols, usize>, ) -> <<E as Entity>::Group as ForType>::FaerOf<&'a [<E as Entity>::Unit]>
Returns the values in column j
.
pub fn symbolic(&self) -> SymbolicSparseColMatRef<'nrows, 'ncols, 'a, I>
pub fn symbolic(&self) -> SymbolicSparseColMatRef<'nrows, 'ncols, 'a, I>
Returns the symbolic structure of the matrix.
Methods from Deref<Target = SymbolicSparseColMatRef<'nrows, 'ncols, 'a, I>>§
pub fn row_indices_of_col_raw(
&self,
j: Idx<'ncols, usize>,
) -> &'a [Idx<'nrows, I>]
pub fn row_indices_of_col_raw( &self, j: Idx<'ncols, usize>, ) -> &'a [Idx<'nrows, I>]
Returns the row indices in column j
.
pub fn row_indices_of_col(
&self,
j: Idx<'ncols, usize>,
) -> impl ExactSizeIterator + DoubleEndedIterator + 'a
pub fn row_indices_of_col( &self, j: Idx<'ncols, usize>, ) -> impl ExactSizeIterator + DoubleEndedIterator + 'a
Returns the row indices in column j
.
Trait Implementations§
§impl<I, E> Clone for SparseColMatRef<'_, '_, '_, I, E>
impl<I, E> Clone for SparseColMatRef<'_, '_, '_, I, E>
§fn clone(&self) -> SparseColMatRef<'_, '_, '_, I, E>
fn clone(&self) -> SparseColMatRef<'_, '_, '_, I, E>
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more§impl<'nrows, 'ncols, 'a, I, E> Deref for SparseColMatRef<'nrows, 'ncols, 'a, I, E>
impl<'nrows, 'ncols, 'a, I, E> Deref for SparseColMatRef<'nrows, 'ncols, 'a, I, E>
§type Target = SymbolicSparseColMatRef<'nrows, 'ncols, 'a, I>
type Target = SymbolicSparseColMatRef<'nrows, 'ncols, 'a, I>
The resulting type after dereferencing.
§fn deref(&self) -> &<SparseColMatRef<'nrows, 'ncols, 'a, I, E> as Deref>::Target
fn deref(&self) -> &<SparseColMatRef<'nrows, 'ncols, 'a, I, E> as Deref>::Target
Dereferences the value.
§impl<'nrows, 'ncols, 'a, I, E> IntoConst for SparseColMatRef<'nrows, 'ncols, 'a, I, E>
impl<'nrows, 'ncols, 'a, I, E> IntoConst for SparseColMatRef<'nrows, 'ncols, 'a, I, E>
type Target = SparseColMatRef<'nrows, 'ncols, 'a, I, E>
fn into_const( self, ) -> <SparseColMatRef<'nrows, 'ncols, 'a, I, E> as IntoConst>::Target
§impl<'short, 'nrows, 'ncols, 'a, I, E> Reborrow<'short> for SparseColMatRef<'nrows, 'ncols, 'a, I, E>
impl<'short, 'nrows, 'ncols, 'a, I, E> Reborrow<'short> for SparseColMatRef<'nrows, 'ncols, 'a, I, E>
type Target = SparseColMatRef<'nrows, 'ncols, 'short, I, E>
fn rb( &'short self, ) -> <SparseColMatRef<'nrows, 'ncols, 'a, I, E> as Reborrow<'short>>::Target
§impl<'short, 'nrows, 'ncols, 'a, I, E> ReborrowMut<'short> for SparseColMatRef<'nrows, 'ncols, 'a, I, E>
impl<'short, 'nrows, 'ncols, 'a, I, E> ReborrowMut<'short> for SparseColMatRef<'nrows, 'ncols, 'a, I, E>
type Target = SparseColMatRef<'nrows, 'ncols, 'short, I, E>
fn rb_mut( &'short mut self, ) -> <SparseColMatRef<'nrows, 'ncols, 'a, I, E> as ReborrowMut<'short>>::Target
impl<I, E> Copy for SparseColMatRef<'_, '_, '_, I, E>
Auto Trait Implementations§
impl<'nrows, 'ncols, 'a, I, E> Freeze for SparseColMatRef<'nrows, 'ncols, 'a, I, E>
impl<'nrows, 'ncols, 'a, I, E> RefUnwindSafe for SparseColMatRef<'nrows, 'ncols, 'a, I, E>where
<<E as Entity>::Group as ForCopyType>::FaerOfCopy<*const [<E as Entity>::Unit]>: RefUnwindSafe,
I: RefUnwindSafe,
impl<'nrows, 'ncols, 'a, I, E> Send for SparseColMatRef<'nrows, 'ncols, 'a, I, E>
impl<'nrows, 'ncols, 'a, I, E> Sync for SparseColMatRef<'nrows, 'ncols, 'a, I, E>
impl<'nrows, 'ncols, 'a, I, E> Unpin for SparseColMatRef<'nrows, 'ncols, 'a, I, E>
impl<'nrows, 'ncols, 'a, I, E> UnwindSafe for SparseColMatRef<'nrows, 'ncols, 'a, I, E>where
<<E as Entity>::Group as ForCopyType>::FaerOfCopy<*const [<E as Entity>::Unit]>: UnwindSafe,
I: RefUnwindSafe,
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)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 more