addAll abstract method

void addAll(
  1. TTMultiMap<V> other
)

Add all key/value pairs from other.

Note: keyMapping is applied to all incoming keys so keys may be altered or skipped during copying from other.

Depending on characteristics of values collection type operation may or may not change this instance. For example if this instance holds values in a Set then it may not be updated if value already exists.

Implementation

void addAll(TTMultiMap<V> other);