Array<T> typedef
Array<T> = List<T>
Represents an array (specifically, a Java array when targeting the JVM platform).
Array instances can be created using the arrayOf, arrayOfNulls and emptyArray standard library functions.
See Kotlin language documentation for more information on arrays.
Implementation
typedef Array<T> = List<T>;