Quintuple

data class Quintuple<A, B, C, D, E>(val first: A, val second: B, val third: C, val fourth: D, val fifth: E)

A data class representing a quintuple 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

Constructors

Link copied to clipboard
constructor(first: A, second: B, third: C, fourth: D, fifth: E)

Properties

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 second: B

the second value

Link copied to clipboard
val third: C

the third value

Functions

Link copied to clipboard
infix fun <F> to(other: F): Sextuple<A, B, C, D, E, F>

Extension function to create a Sextuple from a Quintuple and an additional value.