All Downloads are FREE. Search and download functionalities are using the official Maven repository.

kotlin.util.Integers.kt Maven / Gradle / Ivy

There is a newer version: 1.0.7
Show newest version
@file:kotlin.jvm.JvmMultifileClass
@file:kotlin.jvm.JvmName("StandardKt")
package kotlin

/**
 * Executes the given function [body] specified number of [times].
 *
 * A zero-based index of current iteration is passed as a parameter to [body].
 */
public inline fun repeat(times: Int, body: (Int) -> Unit) {
    for (index in 0..times - 1) {
        body(index)
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy