`lateinit` forces var, which is bad imo. `lazy` wi...
# announcements
j
lateinit
forces var, which is bad imo.
lazy
will cause exceptions if the property is accessed out of order (Im leaning towards this for logical reasons)
notNull
can't be assigned over so same as lateinit
k
You could write your own delegate for this.