Tuple4

data class Tuple4<out A, out B, out C, out D>(val first: A, val second: B, val third: C, val fourth: D)(source)

Constructors

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

Types

Link copied to clipboard
object Companion

Properties

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

Functions

Link copied to clipboard
operator fun <A : Comparable<A>, B : Comparable<B>, C : Comparable<C>, D : Comparable<D>> Tuple4<A, B, C, D>.compareTo(other: Tuple4<A, B, C, D>): Int
Link copied to clipboard
operator fun <A, B, C, D, E> Tuple4<A, B, C, D>.plus(e: E): Tuple5<A, B, C, D, E>
Link copied to clipboard
open override fun toString(): String