pub trait CsStorageIter<'a, T, R, C = U1> {
    type ColumnEntries: Iterator<Item = (usize, T)>;
    type ColumnRowIndices: Iterator<Item = usize>;

    fn column_row_indices(&'a self, j: usize) -> Self::ColumnRowIndices;
    fn column_entries(&'a self, j: usize) -> Self::ColumnEntries;
}
Expand description

Trait for iterable compressed-column matrix storage.

Required Associated Types

Iterator through all the rows of a specific columns.

The elements are given as a tuple (row_index, value).

Iterator through the row indices of a specific column.

Required Methods

Iterates through all the row indices of the j-th column.

Iterates through all the entries of the j-th column.

Implementors