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

macosX64Test.maryk.AtomicInteger.kt Maven / Gradle / Ivy

package maryk

import kotlin.native.concurrent.AtomicInt

actual class AtomicInteger actual constructor() {
    private val atomic = AtomicInt(0)
    actual fun incrementAndGet() = atomic.addAndGet(1)

    actual fun get() = atomic.value
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy