Tuple4Like

interface Tuple4Like<A1, A2, A3, A4>

Represents a tuple like data structure which has 4 components.

Since

2.1.0

Functions

Link copied to clipboard
abstract operator fun component1(): A1

Returns the 1st component of this Tuple4Like data structure.

Link copied to clipboard
abstract operator fun component2(): A2

Returns the 2nd component of this Tuple4Like data structure.

Link copied to clipboard
abstract operator fun component3(): A3

Returns the 3rd component of this Tuple4Like data structure.

Link copied to clipboard
abstract operator fun component4(): A4

Returns the 4th component of this Tuple4Like data structure.

Link copied to clipboard
open fun toTuple(): Tuple4<A1, A2, A3, A4>

Turns this class into a Tuple4.