Esempio n. 1
0
 public void addAll(final NestedMap2<K1, K2, V> nestedMap) {
   for (final Triple<K1, K2, V> triple : nestedMap.entrySet()) {
     this.put(triple.getFirst(), triple.getSecond(), triple.getThird());
   }
 }