component1
Returns 1st element from the array.
If the size of this array is less than 1, throws an IndexOutOfBoundsException except in Kotlin/JS where the behavior is unspecified, and in Kotlin/Wasm where a trap will be raised instead, unless -Xwasm-enable-array-range-checks
compiler flag was specified when linking an executable.
Since Kotlin
1.0Returns 1st element from the list.
Throws an IndexOutOfBoundsException if the size of this list is less than 1.
Since Kotlin
1.0Returns 1st element from the array.
If the size of this array is less than 1, throws an IndexOutOfBoundsException except in Kotlin/JS where the behavior is unspecified, and in Kotlin/Wasm where a trap will be raised instead, unless -Xwasm-enable-array-range-checks
compiler flag was specified when linking an executable.
Since Kotlin
1.3Returns the key component of the map entry.
This method allows to use destructuring declarations when working with maps, for example:
for ((key, value) in map) {
// do something with the key and the value
}