Struct nalgebra_sparse::csc::CscColMut[][src]

pub struct CscColMut<'a, T> { /* fields omitted */ }

A mutable representation of a column in a CSC matrix.

Note that only explicitly stored entries can be mutated. The sparsity pattern belonging to the column cannot be modified.

Implementations

impl<'a, T> CscColMut<'a, T>[src]

pub fn nrows(&self) -> usize[src]

The number of global rows in the column.

pub fn nnz(&self) -> usize[src]

The number of non-zeros in this column.

pub fn row_indices(&self) -> &[usize][src]

The row indices corresponding to explicitly stored entries in this column.

pub fn values(&self) -> &[T][src]

The values corresponding to explicitly stored entries in this column.

pub fn get_entry(&self, global_row_index: usize) -> Option<SparseEntry<'_, T>>[src]

Returns an entry for the given global row index.

Each call to this function incurs the cost of a binary search among the explicitly stored row entries.

impl<'a, T> CscColMut<'a, T>[src]

pub fn values_mut(&mut self) -> &mut [T][src]

Mutable access to the values corresponding to explicitly stored entries in this column.

pub fn rows_and_values_mut(&mut self) -> (&[usize], &mut [T])[src]

Provides simultaneous access to row indices and mutable values corresponding to the explicitly stored entries in this column.

This method primarily facilitates low-level access for methods that process data stored in CSC format directly.

pub fn get_entry_mut(
    &mut self,
    global_row_index: usize
) -> Option<SparseEntryMut<'_, T>>
[src]

Returns a mutable entry for the given global row index.

Trait Implementations

impl<'a, T: Debug> Debug for CscColMut<'a, T>[src]

impl<'a, T: Eq> Eq for CscColMut<'a, T>[src]

impl<'a, T: PartialEq> PartialEq<CscColMut<'a, T>> for CscColMut<'a, T>[src]

impl<'a, T> StructuralEq for CscColMut<'a, T>[src]

impl<'a, T> StructuralPartialEq for CscColMut<'a, T>[src]

Auto Trait Implementations

impl<'a, T> RefUnwindSafe for CscColMut<'a, T> where
    T: RefUnwindSafe

impl<'a, T> Send for CscColMut<'a, T> where
    T: Send

impl<'a, T> Sync for CscColMut<'a, T> where
    T: Sync

impl<'a, T> Unpin for CscColMut<'a, T>

impl<'a, T> !UnwindSafe for CscColMut<'a, T>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,