operator fun <F, S> Pair<F, S>.component1(): F
Returns the first component of the pair. |
|
operator fun <F, S> Pair<F, S>.component2(): S
Returns the second component of the pair. |
|
fun <F, S> Pair<F, S>.toKotlinPair(): Pair<F, S>
Returns this Pair as a kotlin.Pair. |