Shouldn’t `find {}.let {}` give me an Object and n...
# getting-started
k
Shouldn’t
find {}.let {}
give me an Object and not Object? inside the let?
d
You are probably thinking of
find { }?.let { }
k
Ah, you are correct sir, thank you.