<@U0DN91CPR>: `lateinit` doesn’t change underlying...
# announcements
a
@mzgreen:
lateinit
doesn’t change underlying java type of the field and allows writing
null
to the
var
+ compiler adds
null
check before access.
Delegates.notNull()
wraps field into
Delegate
type and forbids writing
null
to it.
👍 1