kotlin.IntArray

IntArray

class IntArray

An array of ints. When targeting the JVM, instances of this class are represented as int[].

Constructors

<init>

IntArray(size: Int, init: (Int) -> Int)

Creates a new array of the specified size, where each element is calculated by calling the specified init function. The init function returns an array element given its index.

I