for me `this` in `lazy` make no sense, since `lazy...
# announcements
d
for me
this
in
lazy
make no sense, since
lazy
is going to intialize property so
this
does not really exist yet. taking example with
Layer
, if that layer instance does not exists yet it make no sense to call it’s other functions to create it, it would be the same as calling something like this
Copy code
var test: String? = null
        test = test?.substring(0, 2)