AtomicArray

inline fun <T> AtomicArray(size: Int, init: (Int) -> T): AtomicArray<T>(source)

Creates a new AtomicArray of the given size, where each element is initialized by calling the given init function.

The function init is called for each array element sequentially starting from the first one. It should return the value for an array element given its index.

Since Kotlin

1.9

Throws

if the specified size is negative.