Yes you just have to use the lamda syntax, so eith...
# codingconventions
k
Yes you just have to use the lamda syntax, so either
x?.let { x -> f(a, x) }
or
x?.let { f(a, it) }
.
👍 1