Another related issue, a while ago I was looking f...
# stdlib
k
Another related issue, a while ago I was looking for something
x to y
that returns a sequence that goes into whatever direction is required, for example:
0 to 5
is
[0,1,3,4]
and
0 to -5
is
[0,-1,-2,-3,-4]
.
i
to
function name is already taken by pair creation. Thus it would require a different name, something like
goesTo
. What is your use case? Are you going to use it only with literal bounds?