static <T,U> java.util.stream.Stream<Triple<T,U,java.lang.Integer>> |
Triple.tripleRange(Pair<T,U> pair,
int from,
int to) |
Creates a Stream of Triple s composed of a given fixed Pair and an integer in the given
range.
|
static <T,U> java.util.stream.Stream<Triple<T,U,java.lang.Integer>> |
Triple.tripleRangeClosed(Pair<T,U> pair,
int from,
int to) |
Creates a Stream of Triple s composed of a given fixed Pair and an integer in the given
range.
|
static <T,U,V> java.util.stream.Stream<Triple<T,U,V>> |
Triple.tripleStream(Pair<T,U> pair,
java.util.stream.Stream<? extends V> stream) |
Creates a Stream of Triple s composed of a given Pair and another element taken from
Stream .
|