data class Quintuple<A, B, C, D>
A class representing a group of four values
Quintuple(first: A, second: B, third: C, fourth: D)
A class representing a group of four values |
val first: A
the first value |
|
val fourth: D
the fourth value |
|
val second: B
the second value |
|
val third: C
the third value |