Splited9

data class Splited9<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)

Data class that holds nine values split from a combined field.

Parameters

A

Type of the first value

B

Type of the second value

C

Type of the third value

D

Type of the fourth value

E

Type of the fifth value

F

Type of the sixth value

G

Type of the seventh value

H

Type of the eighth value

I

Type of the ninth value

first

The first split value

second

The second split value

third

The third split value

fourth

The fourth split value

fifth

The fifth split value

sixth

The sixth split value

seventh

The seventh split value

eighth

The eighth split value

ninth

The ninth split 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)

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 third: C