Splited3

data class Splited3<A, B, C>(val first: A, val second: B, val third: C)

Data class that holds three 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

first

The first split value

second

The second split value

third

The third split value

Constructors

Link copied to clipboard
constructor(first: A, second: B, third: C)

Properties

Link copied to clipboard
val first: A
Link copied to clipboard
val second: B
Link copied to clipboard
val third: C