What's the Kotlin equivalent of Java's String[]?

asked9 years ago
last updated5 years ago
viewed200.5k times
Up Vote237Down Vote

I see that Kotlin has ByteArray, ShortArray, IntArray, CharArray, DoubleArray, FloatArray, which are equivalent to byte[], short[], int[],char[], double[], float[] in Java.

Now I'm wondering, is there any StringArray equivalent to Java's String[]?