remove

fun remove(key: Any?): ImmutableSet<V>?

Removes the mapping for the specified key from this multimap if present and returns the Collection of previous values associated with key, or null if there was no mapping for key.


fun remove(key: K, value: V): Boolean

Removes the entry for the specified key only if it is currently mapped to the specified value and return true if removed.


fun remove(key: Any?, onRemove: (V) -> Unit): Boolean

Removes the mapping for the specified key from the multimap if present.

Return

If the multimap has changed as a result of this call.

Parameters

key

key whose mapping is to be removed from the multimap.

onRemove

The action to run on each value of the key.