Quartet

data class Quartet<out F, out S, out T, out FO>(first: F, second: S, third: T, fourth: FO)

Functions

Link copied to clipboard
open override fun toString(): String

Properties

Link copied to clipboard
val first: F
Link copied to clipboard
val fourth: FO
Link copied to clipboard
val second: S
Link copied to clipboard
val third: T

Extensions

Link copied to clipboard
infix fun <A, B, C, D, E> Quartet<A, B, C, D>.to(that: E): Quintet<A, B, C, D, E>