Return the number of bytes to step in each dimension when traversing a slice.
n-dimensional slice
array of byte strides
import mir.ndslice.topology : iota, as; auto e = iota(2, 3, 1, 3); assert(e.as!int.byteStrides == [36, 12, 12, 4]); assert(e.as!double.byteStrides == [72, 24, 24, 8]);
See Implementation
Return the number of bytes to step in each dimension when traversing a slice.