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

alakazam.kotlin.core.MapExtensions.kt Maven / Gradle / Ivy

There is a newer version: 4.7.0
Show newest version
package alakazam.kotlin.core

/**
 * Returns a copied new map instance.
 */
public fun  Map.deepCopy(): Map = mutableMapOf().also { it.putAll(this) }

/**
 * Clears the map and inserts a new set of values.
 */
public fun  MutableMap.replaceAllWith(list: Map) {
  clear()
  putAll(list)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy