Tuple5
data class Tuple5<out E1, out E2, out E3, out E4, out E5>(val element1: E1, val element2: E2, val element3: E3, val element4: E4, val element5: E5) : Serializable
Represents a tuple of 5 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.