AtomicArray

Native
1.9
@ExperimentalStdlibApi inline fun <reified 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.

Exceptions

RuntimeException - if the specified size is negative.