Tuple10

data class Tuple10<Super, T1 : Super, T2 : Super, T3 : Super, T4 : Super, T5 : Super, T6 : Super, T7 : Super, T8 : Super, T9 : Super, T10 : Super> : Tuple<Super> , AllOf10<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10> (source)

Tuple carrying elements item1 through item10.

Parameters

Super

common super type for all tuple elements.

T1

type of the first element.

T2

type of the second element.

T3

type of the third element.

T4

type of the fourth element.

T5

type of the fifth element.

T6

type of the sixth element.

T7

type of the seventh element.

T8

type of the eighth element.

T9

type of the ninth element.

T10

type of the tenth element.

Properties

Link copied to clipboard
open override val item1: T1

the first element.

Link copied to clipboard
open override val item10: T10

the tenth element.

Link copied to clipboard
open override val item2: T2

the second element.

Link copied to clipboard
open override val item3: T3

the third element.

Link copied to clipboard
open override val item4: T4

the fourth element.

Link copied to clipboard
open override val item5: T5

the fifth element.

Link copied to clipboard
open override val item6: T6

the sixth element.

Link copied to clipboard
open override val item7: T7

the seventh element.

Link copied to clipboard
open override val item8: T8

the eighth element.

Link copied to clipboard
open override val item9: T9

the ninth element.

Functions

Link copied to clipboard
open override fun toList(): List<Super>

Constructs a list of all the items in this.