pub type VerticallyStridedMatrixView<Inner> = RowIndexMappedView<VerticallyStridedRowIndexMap, Inner>;Aliased Type§
pub struct VerticallyStridedMatrixView<Inner> {
pub index_map: VerticallyStridedRowIndexMap,
pub inner: Inner,
}Fields§
§index_map: VerticallyStridedRowIndexMapA row index mapping that defines the number and order of visible rows.
inner: InnerThe inner matrix that holds actual data.