Join Slack
Powered by
Something like this? `val errors = torrent.error?....
# getting-started
a
ahdezma
04/25/2017, 1:20 PM
Something like this?
val errors = torrent.error?.let { listOf(it) }
i
ilya.gorbunov
04/25/2017, 1:33 PM
Or
torrent.error?.let(::listOf)
2
Views
Open in Slack
Previous
Next