AtomicArray
Creates a new AtomicArray
Samples
import kotlin.concurrent.atomics.*
fun main() {
//sampleStart
val a = AtomicArray(arrayOf("aaa", "bbb", "ccc"))
println(a.toString()) // [aaa, bbb, ccc]
//sampleEnd
}
Creates a new AtomicArray filled with elements of the given array.
Creates a new AtomicArray
Creates a new AtomicArray
Creates a new AtomicArray filled with elements of the given array.
Creates a new AtomicArray filled with elements of the given array.