kotlin-times / kt.times / kotlin.Byte

Extensions for kotlin.Byte

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

Allows to repeat an action N times, where N is a Byte 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).