minusAssign

Common
JVM
JS
Native
1.1
operator fun <K, V> MutableMap<K, V>.minusAssign(key: K)
(source)

Removes the entry with the given key from this mutable map.

Common
JVM
JS
Native
1.1
operator fun <K, V> MutableMap<K, V>.minusAssign(
    keys: Iterable<K>)

(source)

Removes all entries the keys of which are contained in the given keys collection from this mutable map.

Common
JVM
JS
Native
1.1
operator fun <K, V> MutableMap<K, V>.minusAssign(
    keys: Array<out K>)

(source)

Removes all entries the keys of which are contained in the given keys array from this mutable map.

Common
JVM
JS
Native
1.1
operator fun <K, V> MutableMap<K, V>.minusAssign(
    keys: Sequence<K>)

(source)

Removes all entries from the keys of which are contained in the given keys sequence from this mutable map.

Common
JVM
JS
Native
1.0
operator fun <T> MutableCollection<in T>.minusAssign(
    element: T)

(source)

Removes a single instance of the specified element from this mutable collection.

Common
JVM
JS
Native
1.0
operator fun <T> MutableCollection<in T>.minusAssign(
    elements: Iterable<T>)

(source)

Removes all elements contained in the given elements collection from this mutable collection.

Common
JVM
JS
Native
1.0
operator fun <T> MutableCollection<in T>.minusAssign(
    elements: Array<T>)

(source)

Removes all elements contained in the given elements array from this mutable collection.

Common
JVM
JS
Native
1.0
operator fun <T> MutableCollection<in T>.minusAssign(
    elements: Sequence<T>)

(source)

Removes all elements contained in the given elements sequence from this mutable collection.