The type of keys in the map.
The type of values stored in the multimap.
The array associated with key k after insertion.
Adds a value v to the array associated with key k inside a Record-backed multimap.
If the key does not yet exist in the record, a new array is created, added to the record, and then the value is appended. If the key already exists, the value is appended to the existing array.
The type of keys in the record (must extend PropertyKey).
The type of values stored in the multimap.
The array associated with key k after insertion.
Adds a value
vto the array associated with keykinside aMap-backed multimap.If the key does not yet exist in the map, a new array is created, added to the map, and then the value is appended. If the key already exists, the value is appended to the existing array.