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

name.remal.kotlin.collections.MutableMap.kt Maven / Gradle / Ivy

The newest version!
package name.remal

import java.util.Collections.synchronizedMap

fun  MutableMap.asSynchronized(): MutableMap = synchronizedMap(this)

fun  MutableMap.removeAll(keys: Collection) = keys.forEach { remove(it) }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy