Add sample for 'repeat' function

Co-authored-by: Ilya Gorbunov <ilya.gorbunov@jetbrains.com>
This commit is contained in:
ymnder
2018-07-23 21:20:33 +09:00
committed by Ilya Gorbunov
parent 0c97d99d77
commit 1a20b1f357
2 changed files with 25 additions and 0 deletions
@@ -128,6 +128,8 @@ public inline fun <T> T.takeUnless(predicate: (T) -> Boolean): T? {
* Executes the given function [action] specified number of [times].
*
* A zero-based index of current iteration is passed as a parameter to [action].
*
* @sample samples.misc.ControlFlow.repeat
*/
@kotlin.internal.InlineOnly
public inline fun repeat(times: Int, action: (Int) -> Unit) {