Example #1
0
 @Override
 public <V, R extends MutableMultimap<V, T>> R groupBy(
     Function<? super T, ? extends V> function, R target) {
   this.forEach(MultimapPutProcedure.on(target, function));
   return target;
 }