Package-level declarations

Functions

Link copied to clipboard
fun <T1, T2> Tuple2<T1, T2>.toPair(): Pair<T1, T2>

Returns a new Pair based on the arguments in the current Tuple2.

Link copied to clipboard
fun <T1, T2, T3> Tuple3<T1, T2, T3>.toTriple(): Triple<T1, T2, T3>

Returns a new Triple based on the arguments in the current Tuple3.

Link copied to clipboard
fun <T1, T2> Pair<T1, T2>.toTuple(): Tuple2<T1, T2>

Returns a new Tuple2 based on the arguments in the current Pair.

fun <T1, T2, T3> Triple<T1, T2, T3>.toTuple(): Tuple3<T1, T2, T3>

Returns a new Tuple3 based on the arguments in the current Triple.