downTo
infix fun Int.downTo(to: Byte): IntProgression
infix fun Long.downTo(to: Byte): LongProgression
infix fun Byte.downTo(to: Byte): IntProgression
infix fun Short.downTo(to: Byte): IntProgression
infix fun Char.downTo(to: Char): CharProgression
infix fun Int.downTo(to: Int): IntProgression
infix fun Long.downTo(to: Int): LongProgression
infix fun Byte.downTo(to: Int): IntProgression
infix fun Short.downTo(to: Int): IntProgression
infix fun Int.downTo(to: Long): LongProgression
infix fun Long.downTo(to: Long): LongProgression
infix fun Byte.downTo(to: Long): LongProgression
infix fun Short.downTo(to: Long): LongProgression
infix fun Int.downTo(to: Short): IntProgression
infix fun Long.downTo(to: Short): LongProgression
infix fun Byte.downTo(to: Short): IntProgression
infix fun Short.downTo(to: Short): IntProgression
@ExperimentalUnsignedTypes infix fun UByte.downTo(
to: UByte
): UIntProgression
@ExperimentalUnsignedTypes infix fun UInt.downTo(
to: UInt
): UIntProgression
@ExperimentalUnsignedTypes infix fun ULong.downTo(
to: ULong
): ULongProgression
@ExperimentalUnsignedTypes infix fun UShort.downTo(
to: UShort
): UIntProgression