Package-level declarations

Package for util related stuff.

Types

Link copied to clipboard
interface MultiMap<K, V> : Map<K, List<V>>

Extension of the Map interface that stores multiple values.

Functions

Link copied to clipboard
fun <K, V> Map<K, List<V>>.toMultiMap(): MultiMap<K, V>

Return a MultiMap containing the given Map entries.