public static range<T extends AbstractInt>(start as T, stop as T, delta as T) as Generator<T>:
Builds a Python-style integer range from start to stop (exclusive) using the provided step.
for i in range(10, 0, -2): print(i)
| Parameter | Description |
|---|---|
start | Inclusive lower bound. |
stop | Exclusive upper bound. |
delta | Step between successive values. Must not be 0. |
A generator containing each integer in the requested interval.