This module implements various helper routines for idioms used throughout the compiler. Dependencies on other modules should be kept as minimal as possible
HOslice[T] = object
a*, b*: T
-
A half-open slice, that is, a slice where the end is excluded. These are useful for use with unsigned integers, as, compared to Slice, no special handling is required for empty slices.
Source
Edit