| Constructor and Description |
|---|
Tuples.Triples() |
| Modifier and Type | Method and Description |
|---|---|
static <T,U,V> TernaryAction<T,U,V> |
untupled(Action<Triple<T,U,V>> action)
Adapts an action accepting a triple to a ternary action.
|
static <R,T,U,V> TernaryDelegate<R,T,U,V> |
untupled(Delegate<R,Triple<T,U,V>> delegate)
Adapts a delegate accepting a triple to a ternary delegate.
|
static <T,U,V> TernaryPredicate<T,U,V> |
untupled(Predicate<Triple<T,U,V>> predicate)
Adapts a predicate accepting a triple to a ternary predicate.
|
public static <R,T,U,V> TernaryDelegate<R,T,U,V> untupled(Delegate<R,Triple<T,U,V>> delegate)
R - the delegate return typeT - the delegate first parameter typeU - the delegate second parameter typeV - the delegate third parameter typedelegate - the delegate to be adaptedpublic static <T,U,V> TernaryPredicate<T,U,V> untupled(Predicate<Triple<T,U,V>> predicate)
T - the predicate first parameter typeU - the predicate second parameter typeV - the predicate third parameter typepredicate - the predicate to be adaptedpublic static <T,U,V> TernaryAction<T,U,V> untupled(Action<Triple<T,U,V>> action)
T - the action first parameter typeU - the action second parameter typeV - the action third parameter typeaction - the action to be adaptedCopyright © 2012. All Rights Reserved.