Kotlin 1.4 is a planned upgrade that will improve null-check capabilities and optimizations. Instead of throwing a KotlinNullPointerException, IllegalStateException, IllegalArgumentException, and TypeCastException, all runtime checks will now...
Kotlin 1.4 is a planned upgrade that will improve null-check capabilities and optimizations. Instead of throwing a KotlinNullPointerException, IllegalStateException, IllegalArgumentException, and TypeCastException, all runtime checks will now throw a single java.lang.NullPointerException. With this, Kotlin 1.4 will open up more possibilities for null check optimizations by the Kotlin compiler or other bytecode processing tools like the...