removeValues abstract method

Iterable<V>? removeValues(
  1. String key
)

Removes all values associated with key. The key remains present, mapped to an empty iterable.

Returns the collection of values associated with key, or null if key was unmapped.

Implementation

Iterable<V>? removeValues(String key);