Tuple9<T1, T2, T3, T4, T5, T6, T7, T8, T9> extension
Extension methods on Record with 9 positional elements.
- on
-
- (T1, T2, T3, T4, T5, T6, T7, T8, T9)
Properties
- eighth → T8
-
Available on (T1, T2, T3, T4, T5, T6, T7, T8, T9), provided by the Tuple9 extension
Returns the eighth element of this tuple.no setter - fifth → T5
-
Available on (T1, T2, T3, T4, T5, T6, T7, T8, T9), provided by the Tuple9 extension
Returns the fifth element of this tuple.no setter - first → T1
-
Available on (T1, T2, T3, T4, T5, T6, T7, T8, T9), provided by the Tuple9 extension
Returns the first element of this tuple.no setter - fourth → T4
-
Available on (T1, T2, T3, T4, T5, T6, T7, T8, T9), provided by the Tuple9 extension
Returns the fourth element of this tuple.no setter - iterable → Iterable
-
Available on (T1, T2, T3, T4, T5, T6, T7, T8, T9), provided by the Tuple9 extension
An (untyped) Iterable over the values of this tuple.no setter - last → T9
-
Available on (T1, T2, T3, T4, T5, T6, T7, T8, T9), provided by the Tuple9 extension
Returns the last element of this tuple.no setter - length → int
-
Available on (T1, T2, T3, T4, T5, T6, T7, T8, T9), provided by the Tuple9 extension
Returns the number of elements in the tuple.no setter - ninth → T9
-
Available on (T1, T2, T3, T4, T5, T6, T7, T8, T9), provided by the Tuple9 extension
Returns the ninth element of this tuple.no setter - second → T2
-
Available on (T1, T2, T3, T4, T5, T6, T7, T8, T9), provided by the Tuple9 extension
Returns the second element of this tuple.no setter - seventh → T7
-
Available on (T1, T2, T3, T4, T5, T6, T7, T8, T9), provided by the Tuple9 extension
Returns the seventh element of this tuple.no setter - sixth → T6
-
Available on (T1, T2, T3, T4, T5, T6, T7, T8, T9), provided by the Tuple9 extension
Returns the sixth element of this tuple.no setter - third → T3
-
Available on (T1, T2, T3, T4, T5, T6, T7, T8, T9), provided by the Tuple9 extension
Returns the third element of this tuple.no setter
Methods
-
map<
R> (R callback(T1 first, T2 second, T3 third, T4 fourth, T5 fifth, T6 sixth, T7 seventh, T8 eighth, T9 ninth)) → R -
Available on (T1, T2, T3, T4, T5, T6, T7, T8, T9), provided by the Tuple9 extension
Applies the values of this tuple to an 9-ary function. -
removeEighth(
) → (T1, T2, T3, T4, T5, T6, T7, T9) -
Available on (T1, T2, T3, T4, T5, T6, T7, T8, T9), provided by the Tuple9 extension
Returns a new tuple with the eighth element removed. -
removeFifth(
) → (T1, T2, T3, T4, T6, T7, T8, T9) -
Available on (T1, T2, T3, T4, T5, T6, T7, T8, T9), provided by the Tuple9 extension
Returns a new tuple with the fifth element removed. -
removeFirst(
) → (T2, T3, T4, T5, T6, T7, T8, T9) -
Available on (T1, T2, T3, T4, T5, T6, T7, T8, T9), provided by the Tuple9 extension
Returns a new tuple with the first element removed. -
removeFourth(
) → (T1, T2, T3, T5, T6, T7, T8, T9) -
Available on (T1, T2, T3, T4, T5, T6, T7, T8, T9), provided by the Tuple9 extension
Returns a new tuple with the fourth element removed. -
removeLast(
) → (T1, T2, T3, T4, T5, T6, T7, T8) -
Available on (T1, T2, T3, T4, T5, T6, T7, T8, T9), provided by the Tuple9 extension
Returns a new tuple with the last element removed. -
removeNinth(
) → (T1, T2, T3, T4, T5, T6, T7, T8) -
Available on (T1, T2, T3, T4, T5, T6, T7, T8, T9), provided by the Tuple9 extension
Returns a new tuple with the ninth element removed. -
removeSecond(
) → (T1, T3, T4, T5, T6, T7, T8, T9) -
Available on (T1, T2, T3, T4, T5, T6, T7, T8, T9), provided by the Tuple9 extension
Returns a new tuple with the second element removed. -
removeSeventh(
) → (T1, T2, T3, T4, T5, T6, T8, T9) -
Available on (T1, T2, T3, T4, T5, T6, T7, T8, T9), provided by the Tuple9 extension
Returns a new tuple with the seventh element removed. -
removeSixth(
) → (T1, T2, T3, T4, T5, T7, T8, T9) -
Available on (T1, T2, T3, T4, T5, T6, T7, T8, T9), provided by the Tuple9 extension
Returns a new tuple with the sixth element removed. -
removeThird(
) → (T1, T2, T4, T5, T6, T7, T8, T9) -
Available on (T1, T2, T3, T4, T5, T6, T7, T8, T9), provided by the Tuple9 extension
Returns a new tuple with the third element removed. -
toList(
) → List -
Available on (T1, T2, T3, T4, T5, T6, T7, T8, T9), provided by the Tuple9 extension
An (untyped) List with the values of this tuple. -
toSet(
) → Set -
Available on (T1, T2, T3, T4, T5, T6, T7, T8, T9), provided by the Tuple9 extension
An (untyped) Set with the unique values of this tuple. -
withEighth<
T> (T value) → (T1, T2, T3, T4, T5, T6, T7, T, T9) -
Available on (T1, T2, T3, T4, T5, T6, T7, T8, T9), provided by the Tuple9 extension
Returns a new tuple with the eighth element replaced byvalue
. -
withFifth<
T> (T value) → (T1, T2, T3, T4, T, T6, T7, T8, T9) -
Available on (T1, T2, T3, T4, T5, T6, T7, T8, T9), provided by the Tuple9 extension
Returns a new tuple with the fifth element replaced byvalue
. -
withFirst<
T> (T value) → (T, T2, T3, T4, T5, T6, T7, T8, T9) -
Available on (T1, T2, T3, T4, T5, T6, T7, T8, T9), provided by the Tuple9 extension
Returns a new tuple with the first element replaced byvalue
. -
withFourth<
T> (T value) → (T1, T2, T3, T, T5, T6, T7, T8, T9) -
Available on (T1, T2, T3, T4, T5, T6, T7, T8, T9), provided by the Tuple9 extension
Returns a new tuple with the fourth element replaced byvalue
. -
withLast<
T> (T value) → (T1, T2, T3, T4, T5, T6, T7, T8, T) -
Available on (T1, T2, T3, T4, T5, T6, T7, T8, T9), provided by the Tuple9 extension
Returns a new tuple with the last element replaced byvalue
. -
withNinth<
T> (T value) → (T1, T2, T3, T4, T5, T6, T7, T8, T) -
Available on (T1, T2, T3, T4, T5, T6, T7, T8, T9), provided by the Tuple9 extension
Returns a new tuple with the ninth element replaced byvalue
. -
withSecond<
T> (T value) → (T1, T, T3, T4, T5, T6, T7, T8, T9) -
Available on (T1, T2, T3, T4, T5, T6, T7, T8, T9), provided by the Tuple9 extension
Returns a new tuple with the second element replaced byvalue
. -
withSeventh<
T> (T value) → (T1, T2, T3, T4, T5, T6, T, T8, T9) -
Available on (T1, T2, T3, T4, T5, T6, T7, T8, T9), provided by the Tuple9 extension
Returns a new tuple with the seventh element replaced byvalue
. -
withSixth<
T> (T value) → (T1, T2, T3, T4, T5, T, T7, T8, T9) -
Available on (T1, T2, T3, T4, T5, T6, T7, T8, T9), provided by the Tuple9 extension
Returns a new tuple with the sixth element replaced byvalue
. -
withThird<
T> (T value) → (T1, T2, T, T4, T5, T6, T7, T8, T9) -
Available on (T1, T2, T3, T4, T5, T6, T7, T8, T9), provided by the Tuple9 extension
Returns a new tuple with the third element replaced byvalue
.