commonMain.kotlinx.collections.atomic.MutableAtomicCollection.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kotlinx-collections-atomic Show documentation
Show all versions of kotlinx-collections-atomic Show documentation
A Kotlin Multiplatform Mutable Collections that are thread safe
package kotlinx.collections.atomic
interface MutableAtomicCollection> : AtomicCollection, MutableCollection {
fun doAction(run: C.() -> T): T
override fun iterator(): MutableIterator = atomic.value.iterator()
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy