AtomicIntArray
An IntArray in which elements are always updated atomically. For additional details about atomicity guarantees for reads and writes see kotlin.concurrent.Volatile.
Since Kotlin
1.9Constructors
Creates a new AtomicIntArray of the given size, with all elements initialized to zero.
Properties
Functions
Atomically sets the value of the element at the given index to the new value if the current value equals the expected value and returns the old value of the element in any case.
Atomically sets the value of the element at the given index to the new value if the current value equals the expected value. Returns true if the operation was successful and false only if the current value of the element was not equal to the expected value.
Atomically decrements the element at the given index by one and returns the new value of the element.
Atomically decrements the element at the given index by one and returns the old value of the element.
Atomically increments the element at the given index by one and returns the old value of the element.
Atomically increments the element at the given index by one and returns the new value of the element.