Structs§
- IntRange
PopFront Libfunc - Libfunc that takes the range
[x, y)
and ifx < y
, returns the range[x + 1, y)
and the valuex
. - IntRange
TryNew Libfunc - Libfunc that constructs the range
[x, y)
ifx <= y
. Otherwise, returns the empty range[y, y)
. - IntRange
Type Wrapped - Type for
IntRange(x, y)
wherex <= y
.