tqdm / tqdm.cpp

C++ port of tqdm
Other
318 stars 29 forks source link

trange API #33

Closed CrazyPython closed 8 years ago

CrazyPython commented 8 years ago

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 8 years ago

already have this. also start, stop, step.