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

commonMain.kotlinx.collections.atomic.Builders.kt Maven / Gradle / Ivy

There is a newer version: 1.5.3
Show newest version
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