Nonuple
data class Nonuple<A, B, C, D, E, F, G, H, I>(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)
A data class representing a nonuple 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