Decuple

data class Decuple<A, B, C, D, E, F, G, H, I, 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)

A data class representing a decuple of values.

Parameters

A

the type of the first value

B

the type of the second value

C

the type of the third value

D

the type of the fourth value

E

the type of the fifth value

F

the type of the sixth value

G

the type of the seventh value

H

the type of the eighth value

I

the type of the ninth value

J

the type of the tenth value

Constructors

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

Properties

Link copied to clipboard
val eighth: H

the eighth value

Link copied to clipboard
val fifth: E

the fifth value

Link copied to clipboard
val first: A

the first value

Link copied to clipboard
val fourth: D

the fourth value

Link copied to clipboard
val ninth: I

the ninth value

Link copied to clipboard
val second: B

the second value

Link copied to clipboard
val seventh: G

the seventh value

Link copied to clipboard
val sixth: F

the sixth value

Link copied to clipboard
val tenth: J

the tenth value

Link copied to clipboard
val third: C

the third value