buildMutableListMultimap

inline fun <K, V> buildMutableListMultimap(builderAction: MutableListMultimap<K, V>.() -> Unit): MutableListMultimap<K, V>(source)

Builds a new mutable list-multimap with the given builderAction, using the builder inference api.

Return

The newly created list-multimap.

See also

Parameters

K

The key type of the list-multimap.

V

The value type of the list-multimap.

builderAction

The builder action to apply to the list-multimap