How about `val a = b?.let { A(it) }`
# announcements
d
How about
val a = b?.let { A(it) }
r
nice 👍
k
Also:
val a = b?.let(::A)