build Mutable Multimap
inline fun <K, V> buildMutableMultimap(builderAction: MutableMultimap<K, V>.() -> Unit): MutableMultimap<K, V>(source)
Builds a new mutable multimap with the given builderAction, using the builder inference api.
Prefer buildSetMultimap or buildListMultimap over this.
Return
The newly created multimap.
See also
Parameters
K
The key type of the multimap.
V
The value type of the multimap.
builder Action
The builder action to apply to the multimap