marcinmoskala
03/05/2018, 8:42 AMbascarsija
03/06/2018, 8:12 PMin Kotlin, every child object of a nullable object will inherit that nullability.can someone direct me to the relevant documentation on this behavior?
jmfayard
03/07/2018, 1:29 AMbob?.department?.head?.name
is of type String?
and is null if any of bob, department or head is null
http://kotlinlang.org/docs/reference/null-safety.html#safe-callsbascarsija
03/08/2018, 12:15 AM