AtomicIntArray
@ExperimentalStdlibApi
inline
fun
AtomicIntArray
(
size
:
Int
,
init
:
(
Int
)
->
Int
)
:
AtomicIntArray
(source)
Creates a new AtomicIntArray 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.