Is there a reason why `Array<Int>` isn't aut...
# announcements
k
Is there a reason why
Array<Int>
isn't automatically optimized to
IntArray
? It seems to me that the philosophy of Kotlin is there is no difference between primitive and reference type, and the compiler always chooses the best implementation
K 1