multiSetWithDefaultOf

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