Tuple6

data class Tuple6<out A, out B, out C, out D, out E, out F>(    val first: A,     val second: B,     val third: C,     val fourth: D,     val fifth: E,     val sixth: F)

Constructors

Link copied to clipboard
fun <out A, out B, out C, out D, out E, out F> Tuple6(    first: A,     second: B,     third: C,     fourth: D,     fifth: E,     sixth: F)

Types

Link copied to clipboard
object Companion

Functions

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

Properties

Link copied to clipboard
val fifth: E
Link copied to clipboard
val first: A
Link copied to clipboard
val fourth: D
Link copied to clipboard
val second: B
Link copied to clipboard
val sixth: F
Link copied to clipboard
val third: C

Extensions

Link copied to clipboard
operator fun <A : Comparable<A>, B : Comparable<B>, C : Comparable<C>, D : Comparable<D>, E : Comparable<E>, F : Comparable<F>> Tuple6<A, B, C, D, E, F>.compareTo(other: Tuple6<A, B, C, D, E, F>): Int
Link copied to clipboard
operator fun <A, B, C, D, E, F, G> Tuple6<A, B, C, D, E, F>.plus(g: G): Tuple7<A, B, C, D, E, F, G>