MutableMultiMap
A mutable collection similar to a MutableMap except it allows multiple values to be associated with a single key. The associated values are not necessarily distinct (e.g., key foo
may be associated with value bar
multiple times).
Parameters
K
The type of elements used as keys
V
The type of elements used as values
Inheritors
Properties
Functions
Link copied to clipboard
Link copied to clipboard
Adds all the key-value associations from another map into this one. This will append to the existing associations, not merge or deduplicate. This operation copies from the given values lists. Later changes to those lists do not affect this collection.
Link copied to clipboard
Returns a new read-only multimap containing all the key-value associations from this multimap