puttingAll
Returns a new persistent map with keys and values from the specified map associated, or this instance if no modifications were made in the result of this operation.
The effect of this call is equivalent to that of calling put(k, v) once for each mapping from key k to value v in the specified map.
fun <K, V> PersistentMap<out K, V>.puttingAll(pairs: Iterable<Pair<K, V>>): PersistentMap<K, V>(source)
fun <K, V> PersistentMap<out K, V>.puttingAll(pairs: Array<out Pair<K, V>>): PersistentMap<K, V>(source)
fun <K, V> PersistentMap<out K, V>.puttingAll(pairs: Sequence<Pair<K, V>>): PersistentMap<K, V>(source)
Returns a new persistent map with entries from the specified key-value pairs added, or this instance if no modifications were made in the result of this operation.