IntRange constructor

init

Initializes a new instance of the IntRange class.

def __init__(self, range):
    ...
ParameterTypeDescription
rangelistThe range.

init

Initializes a new instance of the IntRange class.

def __init__(self, start, count):
    ...
ParameterTypeDescription
startintThe start.
countintThe count.

init

Initializes a new instance of the IntRange class.

def __init__(self, start, count, delta):
    ...
ParameterTypeDescription
startintThe start.
countintThe count.
deltaintThe delta.

See Also