Join Slack
Powered by
<@U0YUW6CM9> `predicate?.isTrue() ?: false`, is sh...
# random
m
mg6maciej
06/24/2017, 8:45 AM
@eneim
predicate?.isTrue() ?: false
, is shorthand for
if (predicate != null) predicate.isTrue() else false
. There is no shorthand for this shorthand.
Open in Slack
Previous
Next