Triple

open class Triple<X, Y, Z>

A generic data holder for two data types.

Parameters

<X>

Type one you want to store.

<Y>

Type two you want to store.

<Z>

Type three you want to store.

Constructors

Link copied to clipboard
open fun Triple(x: X, y: Y, z: Z)
Construct a new pair with two data types.

Properties

Link copied to clipboard
private val x: X
Link copied to clipboard
private val y: Y
Link copied to clipboard
private val z: Z