trange API
CrazyPython opened this issue · 1 comments
CrazyPython commented
trange API idea (overloaded):
trange(int stop)
-> equiv to for (int i = 0; i < stop; ++i)
trange(int start, int stop)
-> equiv to for (int i = start; i < stop; ++i)
The names are completely arbitrary. It's the most intuitive from the outside perspective.
casperdcl commented
already have this. also start, stop, step.