Increment ++ and Decrement -- operators for a fully defined index.
import mir.ndslice.allocation; auto a = slice!int(2, 3); ++a[1, 2]; assert(a[1, 2] == 1);
See Implementation
Increment ++ and Decrement -- operators for a fully defined index.