mutableMultiSetWithDefaultOf

fun <K, V> mutableMultiSetWithDefaultOf(vararg entries: Pair<K, Set<V>>, defaultValue: (key: K) -> Set<V> = { setOf() }): MutableMapWithDefault<K, Set<V>>