Adds an association from the given key to each of the given values.
@override void addValues(K key, Iterable<V> values) { C collection = _map.putIfAbsent(key, _create); _addAll(collection, values); }