fun compareAndSet(expect: Int, update: Int): BooleanAtomically sets the value to the given updated value if the current value == the expected value.
expect - the expected value update - the new value Return
true if successful. False return indicates that the actual value was not equal to the expected value.