Removes a single key-value pair with the key key and the value value from this multimap, if such exists. @return true if the multimap changed
(K key, V value)
| 112 | * @return {@code true} if the multimap changed |
| 113 | */ |
| 114 | boolean remove(K key, V value); |
| 115 | |
| 116 | /** |
| 117 | * Removes all values associated with the key {@code key}. |
no outgoing calls