so one of the benefits of the JVM is automatic bou...
# kotlin-native
e
so one of the benefits of the JVM is automatic bounds checking on arrays. does kotlin-native compiled code still have that? or are arrays sufficiently abstracted by the language that they're not "true" JVM arrays to begin with?
3
o
currently we explicitly check array bounds, but they are not JVM arrays in native, of course
e
awesome. thanks.