operator fun <T> Tuple2<T, *>.component1(): T
Extension for Tuple2 to work with destructuring declarations. |
|
operator fun <T> Tuple2<*, T>.component2(): T
Extension for Tuple2 to work with destructuring declarations. |
|
operator fun <T> Tuple3<*, *, T>.component3(): T
Extension for Tuple3 to work with destructuring declarations. |
|
operator fun <T> Tuple4<*, *, *, T>.component4(): T
Extension for Tuple4 to work with destructuring declarations. |
|
operator fun <T> Tuple5<*, *, *, *, T>.component5(): T
Extension for Tuple5 to work with destructuring declarations. |
|
operator fun <T> Tuple6<*, *, *, *, *, T>.component6(): T
Extension for Tuple6 to work with destructuring declarations. |
|
operator fun <T> Tuple7<*, *, *, *, *, *, T>.component7(): T
Extension for Tuple7 to work with destructuring declarations. |
|
operator fun <T> Tuple8<*, *, *, *, *, *, *, T>.component8(): T
Extension for Tuple8 to work with destructuring declarations. |