Home
last modified time | relevance | path

Searched defs:putAll (Results 1 – 6 of 6) sorted by relevance

/compose/runtime/runtime/src/commonMain/kotlin/androidx/compose/runtime/external/kotlinx/collections/immutable/
DImmutableMap.kt77 …fun putAll(m: Map<out K, @UnsafeVariance V>): PersistentMap<K, V> // m: Iterable<Map.Entry<K, V>>… in put() method
Dextensions.kt375 internal fun <K, V> PersistentMap<out K, V>.putAll(map: Map<out K, V>): PersistentMap<K, V> = in intersect() method
384 internal fun <K, V> PersistentMap<out K, V>.putAll(pairs: Iterable<Pair<K, V>>): PersistentMap<K, V> in intersect() method
393 internal fun <K, V> PersistentMap<out K, V>.putAll(pairs: Array<out Pair<K, V>>): PersistentMap<K, … in putAll() method
402 internal fun <K, V> PersistentMap<out K, V>.putAll(pairs: Sequence<Pair<K, V>>): PersistentMap<K, V> in putAll() method
/compose/runtime/runtime/src/commonMain/kotlin/androidx/compose/runtime/external/kotlinx/collections/immutable/implementations/immutableMap/
DPersistentHashMap.kt68 override fun putAll(m: Map<out K, @UnsafeVariance V>): PersistentMap<K, V> { in putAll() method in androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableMap.PersistentHashMap
DPersistentHashMapBuilder.kt65 override fun putAll(from: Map<out K, V>) { in putAll() method in androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableMap.PersistentHashMapBuilder
/compose/runtime/runtime/src/commonMain/kotlin/androidx/compose/runtime/external/kotlinx/collections/immutable/implementations/persistentOrderedMap/
DPersistentOrderedMap.kt118 override fun putAll(m: Map<out K, @UnsafeVariance V>): PersistentMap<K, V> { in withValue() method in androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.persistentOrderedMap.PersistentOrderedMap
/compose/runtime/runtime/src/commonMain/kotlin/androidx/compose/runtime/snapshots/
DSnapshotStateMap.kt94 override fun putAll(from: Map<out K, V>) = mutate { it.putAll(from) } in <lambda>() method in androidx.compose.runtime.snapshots.SnapshotStateMap