Type Alias VerticallyStridedMatrixView

Source
pub type VerticallyStridedMatrixView<Inner> = RowIndexMappedView<VerticallyStridedRowIndexMap, Inner>;

Aliased Type§

pub struct VerticallyStridedMatrixView<Inner> {
    pub index_map: VerticallyStridedRowIndexMap,
    pub inner: Inner,
}

Fields§

§index_map: VerticallyStridedRowIndexMap

A row index mapping that defines the number and order of visible rows.

§inner: Inner

The inner matrix that holds actual data.