public interface LazySwap
| Modifier and Type | Method and Description |
|---|---|
static <T1,T2> PTuple2<T2,T1> |
lazySwap(PTuple2<T1,T2> host)
Lazily reverse the order of the supplied PTuple.
|
static <T1,T2,T3> PTuple3<T3,T2,T1> |
lazySwap(PTuple3<T1,T2,T3> host)
Lazily reverse the order of the supplied PTuple.
|
static <T1,T2,T3,T4> |
lazySwap(PTuple4<T1,T2,T3,T4> host)
Lazily reverse the order of the supplied PTuple.
|
static <T1,T2,T3,T4,T5> |
lazySwap(PTuple5<T1,T2,T3,T4,T5> host)
Lazily reverse the order of the supplied PTuple.
|
static <T1,T2,T3,T4,T5,T6> |
lazySwap(PTuple6<T1,T2,T3,T4,T5,T6> host)
Lazily reverse the order of the supplied PTuple.
|
static <T1,T2,T3,T4,T5,T6,T7> |
lazySwap(PTuple7<T1,T2,T3,T4,T5,T6,T7> host)
Lazily reverse the order of the supplied PTuple.
|
static <T1,T2,T3,T4,T5,T6,T7,T8> |
lazySwap(PTuple8<T1,T2,T3,T4,T5,T6,T7,T8> host)
Lazily reverse the order of the supplied PTuple.
|
static <T1,T2> PTuple2<T2,T1> lazySwap(PTuple2<T1,T2> host)
lazySwap(PowerTuple.of(10,11).lazyMap1(expensiveFunction));
static <T1,T2,T3> PTuple3<T3,T2,T1> lazySwap(PTuple3<T1,T2,T3> host)
lazySwap(PowerTuple.of(10,11,12).lazyMap1(expensiveFunction));
static <T1,T2,T3,T4> PTuple4<T4,T3,T2,T1> lazySwap(PTuple4<T1,T2,T3,T4> host)
lazySwap(PowerTuple.of(10,11,12,13).lazyMap1(expensiveFunction));
static <T1,T2,T3,T4,T5> PTuple5<T5,T4,T3,T2,T1> lazySwap(PTuple5<T1,T2,T3,T4,T5> host)
lazySwap(PowerTuple.of(10,11,12,13,14).lazyMap1(expensiveFunction));
static <T1,T2,T3,T4,T5,T6> PTuple6<T6,T5,T4,T3,T2,T1> lazySwap(PTuple6<T1,T2,T3,T4,T5,T6> host)
lazySwap(PowerTuple.of(10,11,12,13,14,15).lazyMap1(expensiveFunction));
static <T1,T2,T3,T4,T5,T6,T7> PTuple7<T7,T6,T5,T4,T3,T2,T1> lazySwap(PTuple7<T1,T2,T3,T4,T5,T6,T7> host)
lazySwap(PowerTuple.of(10,11,12,13,14,15,16).lazyMap1(expensiveFunction));
static <T1,T2,T3,T4,T5,T6,T7,T8> PTuple8<T8,T7,T6,T5,T4,T3,T2,T1> lazySwap(PTuple8<T1,T2,T3,T4,T5,T6,T7,T8> host)
lazySwap(PowerTuple.of(10,11,12,13,14,15,16,17).lazyMap1(expensiveFunction));