Tuple10

data class Tuple10<out A, out B, out C, out D, out E, out F, out G, out H, out I, out J>(    val first: A,     val second: B,     val third: C,     val fourth: D,     val fifth: E,     val sixth: F,     val seventh: G,     val eighth: H,     val ninth: I,     val tenth: J)

Constructors

Link copied to clipboard
fun <out A, out B, out C, out D, out E, out F, out G, out H, out I, out J> Tuple10(    first: A,     second: B,     third: C,     fourth: D,     fifth: E,     sixth: F,     seventh: G,     eighth: H,     ninth: I,     tenth: J)

Types

Link copied to clipboard
object Companion

Functions

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

Properties

Link copied to clipboard
val eighth: H
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 ninth: I
Link copied to clipboard
val second: B
Link copied to clipboard
val seventh: G
Link copied to clipboard
val sixth: F
Link copied to clipboard
val tenth: J
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>, G : Comparable<G>, H : Comparable<H>, I : Comparable<I>, J : Comparable<J>> Tuple10<A, B, C, D, E, F, G, H, I, J>.compareTo(other: Tuple10<A, B, C, D, E, F, G, H, I, J>): Int
Link copied to clipboard
operator fun <A, B, C, D, E, F, G, H, I, J, K> Tuple10<A, B, C, D, E, F, G, H, I, J>.plus(k: K): Tuple11<A, B, C, D, E, F, G, H, I, J, K>