<T8> Tuple8<T1,T2,T3,T4,T5,T6,T7,T8> |
Tuple7.append(T8 t8) |
Append a value to this tuple.
|
<T1,T2,T3,T4,T5,T6,T7,T8> Tuple8<T1,T2,T3,T4,T5,T6,T7,T8> |
Tuple0.concat(Tuple8<T1,T2,T3,T4,T5,T6,T7,T8> tuple) |
Concat a tuple's values to this tuple.
|
<T2,T3,T4,T5,T6,T7,T8> Tuple8<T1,T2,T3,T4,T5,T6,T7,T8> |
Tuple1.concat(Tuple7<T2,T3,T4,T5,T6,T7,T8> tuple) |
Concat a tuple's values to this tuple.
|
<T3,T4,T5,T6,T7,T8> Tuple8<T1,T2,T3,T4,T5,T6,T7,T8> |
Tuple2.concat(Tuple6<T3,T4,T5,T6,T7,T8> tuple) |
Concat a tuple's values to this tuple.
|
<T4,T5,T6,T7,T8> Tuple8<T1,T2,T3,T4,T5,T6,T7,T8> |
Tuple3.concat(Tuple5<T4,T5,T6,T7,T8> tuple) |
Concat a tuple's values to this tuple.
|
<T5,T6,T7,T8> Tuple8<T1,T2,T3,T4,T5,T6,T7,T8> |
Tuple4.concat(Tuple4<T5,T6,T7,T8> tuple) |
Concat a tuple's values to this tuple.
|
<T6,T7,T8> Tuple8<T1,T2,T3,T4,T5,T6,T7,T8> |
Tuple5.concat(Tuple3<T6,T7,T8> tuple) |
Concat a tuple's values to this tuple.
|
<T7,T8> Tuple8<T1,T2,T3,T4,T5,T6,T7,T8> |
Tuple6.concat(Tuple2<T7,T8> tuple) |
Concat a tuple's values to this tuple.
|
<T8> Tuple8<T1,T2,T3,T4,T5,T6,T7,T8> |
Tuple7.concat(Tuple1<T8> tuple) |
Concat a tuple's values to this tuple.
|
<U1,U2,U3,U4,U5,U6,U7,U8> Tuple8<U1,U2,U3,U4,U5,U6,U7,U8> |
Tuple8.map(Function8<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,Tuple8<U1,U2,U3,U4,U5,U6,U7,U8>> mapper) |
Maps the components of this tuple using a mapper function.
|
<U1,U2,U3,U4,U5,U6,U7,U8> Tuple8<U1,U2,U3,U4,U5,U6,U7,U8> |
Tuple8.map(java.util.function.Function<? super T1,? extends U1> f1,
java.util.function.Function<? super T2,? extends U2> f2,
java.util.function.Function<? super T3,? extends U3> f3,
java.util.function.Function<? super T4,? extends U4> f4,
java.util.function.Function<? super T5,? extends U5> f5,
java.util.function.Function<? super T6,? extends U6> f6,
java.util.function.Function<? super T7,? extends U7> f7,
java.util.function.Function<? super T8,? extends U8> f8) |
Maps the components of this tuple using a mapper function for each component.
|
<U> Tuple8<U,T2,T3,T4,T5,T6,T7,T8> |
Tuple8.map1(java.util.function.Function<? super T1,? extends U> mapper) |
Maps the 1st component of this tuple to a new value.
|
<U> Tuple8<T1,U,T3,T4,T5,T6,T7,T8> |
Tuple8.map2(java.util.function.Function<? super T2,? extends U> mapper) |
Maps the 2nd component of this tuple to a new value.
|
<U> Tuple8<T1,T2,U,T4,T5,T6,T7,T8> |
Tuple8.map3(java.util.function.Function<? super T3,? extends U> mapper) |
Maps the 3rd component of this tuple to a new value.
|
<U> Tuple8<T1,T2,T3,U,T5,T6,T7,T8> |
Tuple8.map4(java.util.function.Function<? super T4,? extends U> mapper) |
Maps the 4th component of this tuple to a new value.
|
<U> Tuple8<T1,T2,T3,T4,U,T6,T7,T8> |
Tuple8.map5(java.util.function.Function<? super T5,? extends U> mapper) |
Maps the 5th component of this tuple to a new value.
|
<U> Tuple8<T1,T2,T3,T4,T5,U,T7,T8> |
Tuple8.map6(java.util.function.Function<? super T6,? extends U> mapper) |
Maps the 6th component of this tuple to a new value.
|
<U> Tuple8<T1,T2,T3,T4,T5,T6,U,T8> |
Tuple8.map7(java.util.function.Function<? super T7,? extends U> mapper) |
Maps the 7th component of this tuple to a new value.
|
<U> Tuple8<T1,T2,T3,T4,T5,T6,T7,U> |
Tuple8.map8(java.util.function.Function<? super T8,? extends U> mapper) |
Maps the 8th component of this tuple to a new value.
|
static <T1,T2,T3,T4,T5,T6,T7,T8> Tuple8<T1,T2,T3,T4,T5,T6,T7,T8> |
Tuple.narrow(Tuple8<? extends T1,? extends T2,? extends T3,? extends T4,? extends T5,? extends T6,? extends T7,? extends T8> t) |
Narrows a widened Tuple8<? extends T1, ? extends T2, ? extends T3, ? extends T4, ? extends T5, ? extends T6, ? extends T7, ? extends T8> to Tuple8<T1, T2, T3, T4, T5, T6, T7, T8> .
|
static <T1,T2,T3,T4,T5,T6,T7,T8> Tuple8<T1,T2,T3,T4,T5,T6,T7,T8> |
Tuple.of(T1 t1,
T2 t2,
T3 t3,
T4 t4,
T5 t5,
T6 t6,
T7 t7,
T8 t8) |
Creates a tuple of 8 elements.
|
static <T1,T2,T3,T4,T5,T6,T7,T8> Tuple8<Seq<T1>,Seq<T2>,Seq<T3>,Seq<T4>,Seq<T5>,Seq<T6>,Seq<T7>,Seq<T8>> |
Tuple.sequence8(java.lang.Iterable<? extends Tuple8<? extends T1,? extends T2,? extends T3,? extends T4,? extends T5,? extends T6,? extends T7,? extends T8>> tuples) |
Turns a sequence of Tuple8 into a Tuple8 of Seq s.
|
static <T1,T2,T3,T4,T5,T6,T7,T8> Tuple8<T1,T2,T3,T4,T5,T6,T7,T8> |
API.Tuple(T1 t1,
T2 t2,
T3 t3,
T4 t4,
T5 t5,
T6 t6,
T7 t7,
T8 t8) |
|
(package private) static <T1,T2,T3,T4,T5,T6,T7,T8> Tuple8<T1,T2,T3,T4,T5,T6,T7,T8> |
$.Tuple8(Tuple8<T1,T2,T3,T4,T5,T6,T7,T8> tuple8) |
|
Tuple8<T1,T2,T3,T4,T5,T6,T7,T8> |
Tuple8.update1(T1 value) |
Sets the 1st element of this tuple to the given value .
|
Tuple8<T1,T2,T3,T4,T5,T6,T7,T8> |
Tuple8.update2(T2 value) |
Sets the 2nd element of this tuple to the given value .
|
Tuple8<T1,T2,T3,T4,T5,T6,T7,T8> |
Tuple8.update3(T3 value) |
Sets the 3rd element of this tuple to the given value .
|
Tuple8<T1,T2,T3,T4,T5,T6,T7,T8> |
Tuple8.update4(T4 value) |
Sets the 4th element of this tuple to the given value .
|
Tuple8<T1,T2,T3,T4,T5,T6,T7,T8> |
Tuple8.update5(T5 value) |
Sets the 5th element of this tuple to the given value .
|
Tuple8<T1,T2,T3,T4,T5,T6,T7,T8> |
Tuple8.update6(T6 value) |
Sets the 6th element of this tuple to the given value .
|
Tuple8<T1,T2,T3,T4,T5,T6,T7,T8> |
Tuple8.update7(T7 value) |
Sets the 7th element of this tuple to the given value .
|
Tuple8<T1,T2,T3,T4,T5,T6,T7,T8> |
Tuple8.update8(T8 value) |
Sets the 8th element of this tuple to the given value .
|