Tuple3Like

interface Tuple3Like<A1, A2, A3>

Represents a tuple like data structure which has 3 components.

Since

2.1.0

Functions

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

Returns the 1st component of this Tuple3Like data structure.

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

Returns the 2nd component of this Tuple3Like data structure.

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

Returns the 3rd component of this Tuple3Like data structure.

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

Turns this class into a Triple.