Join Slack
Powered by
Yes you just have to use the lamda syntax, so eith...
# codingconventions
k
karelpeeters
09/05/2017, 8:51 AM
Yes you just have to use the lamda syntax, so either
x?.let { x -> f(a, x) }
or
x?.let { f(a, it) }
.
👍 1
Open in Slack
Previous
Next