getAndAdd

fun getAndAdd(index: Int, delta: Int): Int(source)

Deprecated (with error)

Use fetchAndAddAt(index: Int, delta: Int) instead.

Replace with

this.fetchAndAddAt(index, delta)

Atomically adds the given delta to the element at the given index and returns the old value of the element.

Provides sequential consistent ordering guarantees.

Since Kotlin

2.1

Throws

if the index is out of bounds of this array.