Simple range utilities.
value
is between the lower
and higher
values.
start
and end
are on the interval [lower, higher]
.
Range from start
to end
in step
with a transformation f
.
Range between start
and end
. step
is 1
.
Range between start
and end
in step
.
Range between start
and end
. Includes the end
.
Range between start
and end
in step
. Includes the end
if in range for step
.
Range of characters start
to end
.
Here is all valid ranges:
-
Lower case:
[a-z]
-
Upper case:
[A-Z]
-
Digit:
[0-9]
A specified range rangeChar('a', 'Z')
is invalid and produces an empty list.
See license.md
or visit Unlicense.