Slices¶
A slice is a range of integers.
Infinite Slices¶
Felix provides three apparently infinite slices, which are actually bounded by the limits of the integer type:
first.. // first..maxval[int]
..last // minval[int]..last
..<last // minval[int]..<last
There is also a slice over the whole range of a type:
Slice_all[int]
..[int]
More Slices¶
More detail on slices in the reference manual: