Tuple6
data class Tuple6<out A1, out A2, out A3, out A4, out A5, out A6>(val a1: A1, val a2: A2, val a3: A3, val a4: A4, val a5: A5, val a6: A6)
Represents a simple data structure to hold 6 values.
Since
2.0.0
Parameters
A1
The type of the 1st component of this Tuple6.
A2
The type of the 2nd component of this Tuple6.
A3
The type of the 3rd component of this Tuple6.
A4
The type of the 4th component of this Tuple6.
A5
The type of the 5th component of this Tuple6.
A6
The type of the 6th component of this Tuple6.
a1
the 1st component of this Tuple6.
a2
the 2nd component of this Tuple6.
a3
the 3rd component of this Tuple6.
a4
the 4th component of this Tuple6.
a5
the 5th component of this Tuple6.
a6
the 6th component of this Tuple6.
Constructors
Properties
Functions
Link copied to clipboard
fun <A1, A2, A3, A4, A5, A6, A7> Tuple6<A1, A2, A3, A4, A5, A6>.append(a7: A7): Tuple7<A1, A2, A3, A4, A5, A6, A7>
fun <A1, A2, A3, A4, A5, A6, A7, A8> Tuple6<A1, A2, A3, A4, A5, A6>.append(a7: A7, a8: A8): Tuple8<A1, A2, A3, A4, A5, A6, A7, A8>
Link copied to clipboard