static <T extends Comparable<T>> Generator<Triple<T,T,T>> |
CombinedGenerators.sortedTriple(Generator<T> content) |
Create a generator of triples where first value <= second value <= third value.
|
static <T extends Comparable<T>> Generator<Triple<T,T,T>> |
Generators.sortedTriple(Generator<T> content) |
Create a generator of triples where first value <= second value <= third value.
|
static <A,B,C> Generator<Triple<A,B,C>> |
CombinedGenerators.triples(Generator<A> first,
Generator<B> second,
Generator<C> third) |
Create a generator of triples of the types A, B and C for first, second
and third value.
|
static <A,B,C> Generator<Triple<A,B,C>> |
Generators.triples(Generator<A> first,
Generator<B> second,
Generator<C> third) |
Create a generator of triples of the types A, B and C for first, second
and third value.
|