commonMain.org.brightify.hyperdrive.utils.AtomicReference.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kotlin-utils-jvm Show documentation
Show all versions of kotlin-utils-jvm Show documentation
Module containing various utils used throughout Hyperdrive.
package org.brightify.hyperdrive.utils
public expect class AtomicReference(value: T) {
public var value: T
public fun compareAndSet(expected: T, new: T): Boolean
public fun compareAndSwap(expected: T, new: T): T
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy