commonMain.kotlinx.collections.atomic.Builders.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
fun mutableAtomicListOf(vararg elements: E): MutableList {
return MutableAtomicList(elements.toMutableList())
}
fun mutableAtomicMapOf(vararg pairs: Pair): MutableMap {
return MutableAtomicMap(pairs.toMap().toMutableMap())
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy