示例#1
0
 /** @see Iterate#zipWithIndex(Iterable) */
 public static <T> Collection<Pair<T, Integer>> zipWithIndex(Iterable<T> iterable) {
   return IterableIterate.zipWithIndex(iterable, FastList.<Pair<T, Integer>>newList());
 }