the project where i knew they were being used seem...
# stdlib
j
the project where i knew they were being used seems to have moved away. but the important/useful one is easy to write:
Copy code
fun <K, V> MutableMap<K, MutableList<V>>.put(key: K, value: V) = getOrPut(key, { mutableListOf() }).add(value)
👍 1