| Package | Description |
|---|---|
| com.opengamma.strata.collect.tuple |
Tuple data structures.
|
| Modifier and Type | Method and Description |
|---|---|
<Q,R,S> Triple<A,B,C> |
Triple.combinedWith(Triple<Q,R,S> other,
BiFunction<? super A,? super Q,? extends A> combinerFirst,
BiFunction<? super B,? super R,? extends B> combinerSecond,
BiFunction<? super C,? super S,? extends C> combinerThird)
Combines this instance with another.
|
static <A,B,C> Triple<A,B,C> |
Triple.of(A first,
B second,
C third)
Obtains a triple inferring the types.
|
| Modifier and Type | Method and Description |
|---|---|
Class<? extends Triple<A,B,C>> |
Triple.Meta.beanType() |
org.joda.beans.BeanBuilder<? extends Triple<A,B,C>> |
Triple.Meta.builder() |
static <A,B,C> BinaryOperator<Triple<A,B,C>> |
Triple.combining(BiFunction<? super A,? super A,? extends A> combinerFirst,
BiFunction<? super B,? super B,? extends B> combinerSecond,
BiFunction<? super C,? super C,? extends C> combinerThird)
Returns a combiner of triple instances.
|
| Modifier and Type | Method and Description |
|---|---|
<Q,R,S> Triple<A,B,C> |
Triple.combinedWith(Triple<Q,R,S> other,
BiFunction<? super A,? super Q,? extends A> combinerFirst,
BiFunction<? super B,? super R,? extends B> combinerSecond,
BiFunction<? super C,? super S,? extends C> combinerThird)
Combines this instance with another.
|
int |
Triple.compareTo(Triple<A,B,C> other)
Compares the triple based on the first element followed by the second
element followed by the third element.
|
Copyright 2009-Present by OpenGamma Inc. and individual contributors
Apache v2 licensed
Additional documentation can be found at strata.opengamma.io.