Tuple8

data class Tuple8<out E1, out E2, out E3, out E4, out E5, out E6, out E7, out E8>(val element1: E1, val element2: E2, val element3: E3, val element4: E4, val element5: E5, val element6: E6, val element7: E7, val element8: E8) : Serializable

Represents a tuple of 8 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.

Constructors

Link copied to clipboard
constructor(element1: E1, element2: E2, element3: E3, element4: E4, element5: E5, element6: E6, element7: E7, element8: E8)

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

Functions

Link copied to clipboard
fun <E> Tuple8<E, E, E, E, E, E, E, E>.toList(): List<E>

Convert this tuple into a list.

Link copied to clipboard
open override fun toString(): String