This module contains utilities for slices of integers. These utilities include procs that allow treating slices of integers like collections of integers in generic routines.
Procs
func `[]`[I: Ordinal; T, U: SomeInteger](s: HSlice[T, U]; i: HSlice[BackwardsIndex, I]): auto
- Returns s[i.a] .. s[i.b]. Source Edit
func `[]`[I: Ordinal; T, U: SomeInteger](s: HSlice[T, U]; i: HSlice[I, BackwardsIndex]): auto
- Returns s[i.a] .. s[i.b]. Source Edit
func `[]`[I: Ordinal; T, U: SomeInteger](s: HSlice[T, U]; i: HSlice[I, I]): auto
- Returns s[i.a] .. s[i.b]. Source Edit