I (and I believe several others) consider `foo?.le...
# getting-started
p
I (and I believe several others) consider
foo?.let { things() } ?: otherThings()
a pattern that should not be used. If
things()
returns null, then
otherThings()
will still be executed.
1