All Downloads are FREE. Search and download functionalities are using the official Maven repository.

dev.forkhandles.tuples.base.kt Maven / Gradle / Ivy

package dev.forkhandles.tuples

typealias Tuple2 = Pair

val  Tuple2.val1: T1 get() = first
val  Tuple2.val2: T2 get() = second

typealias Tuple3 = Triple

val  Triple.val1: T1 get() = first
val  Triple.val2: T2 get() = second
val  Triple.val3: T3 get() = third





© 2015 - 2024 Weber Informatics LLC | Privacy Policy