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