All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.androidx.paging.platform.Atomics.kt Maven / Gradle / Ivy

There is a newer version: 1.0.6
Show newest version
package androidx.paging.platform

expect class AtomicBoolean(value: Boolean) {
    fun get(): Boolean
    fun set(value: Boolean)
    fun compareAndSet(expected: Boolean, new: Boolean): Boolean
}

expect class AtomicInteger(value: Int) {
    fun decrementAndGet(): Int
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy