Slice selected dimension.
initial index of the sub-slice (inclusive)
final index of the sub-slice (noninclusive)
ndslice with length!dimension equal to end - begin.
import mir.ndslice.topology : iota; auto sl = iota(3, 4); assert(sl.select!1(1, 3) == sl[0 .. $, 1 .. 3]);
See Implementation
Slice selected dimension.