Assignment of a value (e.g. a number) to a fully defined index.
import mir.ndslice.allocation; auto a = slice!int(2, 3); a[1, 2] = 3; assert(a[1, 2] == 3);
See Implementation
Assignment of a value (e.g. a number) to a fully defined index.