buildListMultimap

inline fun <K, V> buildListMultimap(builderAction: ImmutableListMultimap.Builder<K, V>.() -> Unit): ListMultimap<K, V>(source)

Builds a new immutable 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