fun compareAndSet(expected: T, new: T): Boolean
Compares value with expected and replaces it with new value if values matches. Note that comparison is identity-based, not value-based.
expected - the expected value
expected
new - the new value
new
Return true if successful
© 2010–2019 JetBrains s.r.o.Licensed under the Apache License, Version 2.0. https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.native.concurrent/-atomic-reference/compare-and-set.html