compareAndSwap

external fun compareAndSwap(expected: Int, new: Int): Int

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

Return

the old value

Parameters

expected

the expected value

new

the new value