Convenience function for backward indexing.
this[$-index[0], $-index[1], ..., $-index[N-1]]
import mir.ndslice.topology : iota; auto s = iota(2, 3); assert(s[$ - 1, $ - 2] == s.backward([1, 2]));
See Implementation
Convenience function for backward indexing.