kotlin.collections.toTypedArray
toTypedArray
inline fun <reified T> Collection<T>.toTypedArray(): Array<T>
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.
fun ByteArray.toTypedArray(): Array<Byte>
fun ShortArray.toTypedArray(): Array<Short>
fun IntArray.toTypedA