Multidimensional length property.
length of the corresponding dimension
import mir.ndslice.topology : iota; auto slice = iota(3, 4, 5); assert(slice.length == 3); assert(slice.length!0 == 3); assert(slice.length!1 == 4); assert(slice.length!2 == 5);
.Slice.shape, .Slice.structure
See Implementation
Multidimensional length property.