Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
README.md | D | 03-May-2024 | 340 | 11 | 7 | |
package.json | D | 03-May-2024 | 548 | 26 | 25 |
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