compareAndSet

external fun compareAndSet(expected: Int, new: Int): Boolean(source)

Compares value with expected and replaces it with new value if values matches.

Since Kotlin

1.3

Return

true if successful

Parameters

expected

the expected value

new

the new value