klyn.Application.range
method
public static range<T extends AbstractInt>(start as T, stop as T, delta as T) as Generator<T>:
Description

Builds a Python-style integer range from start to stop (exclusive) using the provided step.

for i in range(10, 0, -2):
print(i)
Parameters
ParameterDescription
startInclusive lower bound.
stopExclusive upper bound.
deltaStep between successive values. Must not be 0.
Returns

A generator containing each integer in the requested interval.

Throws
  • ValueError if delta == 0.