Tuple6Like

interface Tuple6Like<A1, A2, A3, A4, A5, A6>

Represents a tuple like data structure which has 6 components.

Since

2.1.0

Functions

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

Returns the 1st component of this Tuple6Like data structure.

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

Returns the 2nd component of this Tuple6Like data structure.

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

Returns the 3rd component of this Tuple6Like data structure.

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

Returns the 4th component of this Tuple6Like data structure.

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

Returns the 5th component of this Tuple6Like data structure.

Link copied to clipboard
abstract operator fun component6(): A6

Returns the 6th component of this Tuple6Like data structure.

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

Turns this class into a Tuple6.