Tuple9Like

interface Tuple9Like<A1, A2, A3, A4, A5, A6, A7, A8, A9>

Represents a tuple like data structure which has 9 components.

Since

2.1.0

Functions

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

Returns the 1st component of this Tuple9Like data structure.

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

Returns the 2nd component of this Tuple9Like data structure.

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

Returns the 3rd component of this Tuple9Like data structure.

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

Returns the 4th component of this Tuple9Like data structure.

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

Returns the 5th component of this Tuple9Like data structure.

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

Returns the 6th component of this Tuple9Like data structure.

Link copied to clipboard
abstract operator fun component7(): A7

Returns the 7th component of this Tuple9Like data structure.

Link copied to clipboard
abstract operator fun component8(): A8

Returns the 8th component of this Tuple9Like data structure.

Link copied to clipboard
abstract operator fun component9(): A9

Returns the 9th component of this Tuple9Like data structure.

Link copied to clipboard
open fun toTuple(): Tuple9<A1, A2, A3, A4, A5, A6, A7, A8, A9>

Turns this class into a Tuple9.