Tuple5Like

interface Tuple5Like<A1, A2, A3, A4, A5>

Represents a tuple like data structure which has 5 components.

Since

2.1.0

Functions

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

Returns the 1st component of this Tuple5Like data structure.

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

Returns the 2nd component of this Tuple5Like data structure.

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

Returns the 3rd component of this Tuple5Like data structure.

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

Returns the 4th component of this Tuple5Like data structure.

Link copied to clipboard
abstract operator fun component5(): A5

Returns the 5th component of this Tuple5Like data structure.

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

Turns this class into a Tuple5.