jsMain.app.cash.sqldelight.internal.Atomics.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of runtime Show documentation
Show all versions of runtime Show documentation
Multiplatform runtime library to support generated code
The newest version!
package app.cash.sqldelight.internal
actual open class Atomic actual constructor(private var value: V) {
actual fun get() = value
actual fun set(value: V) { this.value = value }
}
actual class AtomicBoolean actual constructor(value: Boolean) : Atomic(value)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy