to Typed Array
Returns a typed object array containing all of the elements of this primitive array.
Since Kotlin
1.3Returns a typed object array containing all of the elements of this primitive array.
Returns a typed object array containing all of the elements of this primitive array.
Returns a typed array containing all of the elements of this collection.
Allocates an array of runtime type T
having its size equal to the size of this collection and populates the array with the elements of this collection.
Samples
import kotlin.test.*
fun main() {
//sampleStart
val collection = listOf(1, 2, 3)
val array = collection.toTypedArray()
println(array.contentToString()) // [1, 2, 3]
//sampleEnd
}
Returns a typed object array containing all of the elements of this primitive array.
Returns a typed object array containing all of the elements of this primitive array.
Returns a typed array containing all of the elements of this collection.
Allocates an array of runtime type T
having its size equal to the size of this collection and populates the array with the elements of this collection.