Expand description
Julia-like dynamic-rank strided view types.
This module provides the canonical view types for strided operations, matching Julia’s StridedViews.jl data model:
StridedView: Immutable dynamic-rank strided view with lazy element operationsStridedViewMut: Mutable dynamic-rank strided view (Identity op only)StridedArray: Owned strided multidimensional array
Structs§
- Strided
Array - Owned strided multidimensional array.
- Strided
View - Dynamic-rank immutable strided view with lazy element operations.
- Strided
View Mut - Dynamic-rank mutable strided view.
Functions§
- col_
major_ strides - Compute column-major strides (Julia default: first index varies fastest).
- row_
major_ strides - Compute row-major strides (C default: last index varies fastest).