```x?.let { bla(it) }``` becomes ```let(x, Bla::bl...
# announcements
m
Copy code
x?.let { bla(it) }
becomes
Copy code
let(x, Bla::bla)
for example.
i
Note that there is no null check in the Kotlin
let
m
That’s right, but since the null4j function does a combination of
?.
and
let
it seemed sensible to call it
let
.