示例#1
0
 /** @see Iterate#groupByEach(Iterable, Function) */
 public static <T, V> FastListMultimap<V, T> groupByEach(
     Iterable<T> iterable, Function<? super T, ? extends Iterable<V>> function) {
   return IterableIterate.groupByEach(iterable, function, new FastListMultimap<V, T>());
 }