Tuple6
data class Tuple6<out E1, out E2, out E3, out E4, out E5, out E6>(val element1: E1, val element2: E2, val element3: E3, val element4: E4, val element5: E5, val element6: E6) : Serializable
Represents a tuple of 6 values.
There is no meaning attached to values in this class, it can be used for any purpose. Two tuples are equal if all the components are equal.