not really, actually I wanted to use the ::variabl...
# announcements
m
not really, actually I wanted to use the ::variable.isInitialized from kotlin, which I cant
k
Why do you want that? Just make it a nullable property then.
m
yeah, I did that now, but I would just find it more beautiful if it doesn't have to be null
k
If you're going to check whether it's null just make it nullable, that's what "null safety" means.
m
but the thing is, it cant be null, it is designed as a lateinit
k
At the point you're checking it itcan be null, right?
m
yeah, the first time, but then I dont want to have
?
or
!!
all the time