excluding the specified [to] value. * If the [to] value is less than or equal to `this` value, then the returned range is empty.*/ public infix fun Int.until(to: Int): IntRange { if (to <= Int.MIN_VALUE) return IntRange.EMPTY return this .. (to - 1).toInt() } Functions