kotlin-times / kt.times / kotlin.Short

Extensions for kotlin.Short

times operator infix fun Short.times(action: (Short) -> Unit): Unit

Allows to repeat an action N times, where N is a Short value on which this method is invoked. Since this method is marked as inline, there should be no runtime overhead of using this method over simple range iteration (or its Java for-loop equivalent, for that matter).