fromClosedRange

Common
JVM
JS
Native
1.0
fun fromClosedRange (
rangeStart : Int ,
rangeEnd : Int ,
step : Int
) : IntProgression

(source)

Creates IntProgression within the specified bounds of a closed range.

The progression starts with the rangeStart value and goes toward the rangeEnd value not excluding it, with the specified step . In order to go backwards the step must be negative.

step must be greater than Int.MIN_VALUE and not equal to zero.