https://kotlinlang.org logo
c

cedric

06/13/2016, 8:09 PM
I believe @evanchooly’s point is that if you do
o?.let {}
,
o
is still a nullable reference in the block so you have to use
it
(or whatever you called it)