Join Slack
Powered by
``` fun <R> Boolean.then(block: () -> R):...
# announcements
g
gabrielfv
04/23/2018, 8:02 PM
Copy code
fun <R> Boolean.then(block: () -> R): R? { return if (this) block() else null }
Is what I did
Open in Slack
Previous
Next