• Home
Name Date Size #Lines LOC

..--

README.mdD03-May-2024340 117

package.jsonD03-May-2024548 2625

README.md

1# kotlinx.atomicfu
2
3The idiomatic way to use atomic operations in [Kotlin/JS](https://kotlinlang.org/docs/reference/js-overview.html),
4so that the same code can be shared with Kotlin/JVM.
5
6```kotlin
7private val top = atomic<Node?>(null)
8```
9
10See [README](https://github.com/Kotlin/kotlinx.atomicfu/blob/master/README.md) for more details.
11