- java.lang.Object
-
- xyz.cofe.iter.BiProductIterable<A,B>
-
-
Constructor Summary
Constructors Constructor Description BiProductIterable()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Iterator<Pair<A,B>>iterator()static <A,B>
BiProductIterable<A,B>of(Iterable<A> _1, Iterable<B> _2)Конструкторstatic <A,B>
BiProductIterable<A,B>of(Iterator<A> _1, Iterable<B> _2)Конструктор-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface xyz.cofe.iter.Eterable
count, filter, first, limit, map, notNull, product, product, product, product, product, reduce, toList, union, union
-
Methods inherited from interface java.lang.Iterable
forEach, spliterator
-
-
-
-
Method Detail
-
of
public static <A,B> BiProductIterable<A,B> of(Iterator<A> _1, Iterable<B> _2)
Конструктор- Type Parameters:
A- Тип первого спискаB- Тип второго списка- Parameters:
_1- Итератор по первому списку_2- Итератор по второму списку- Returns:
- Итератор по декртовому произведению
-
of
public static <A,B> BiProductIterable<A,B> of(Iterable<A> _1, Iterable<B> _2)
Конструктор- Type Parameters:
A- Тип первого спискаB- Тип второго списка- Parameters:
_1- Итератор по первому списку_2- Итератор по второму списку- Returns:
- Итератор по декртовому произведению
-
-