Playing with the idea of allowing boolean predicat...
# announcements
c
Playing with the idea of allowing boolean predicates to accept a closure. Instead of:
Copy code
if (properties.isNotEmpty()) {
    properties.forEach { prop ->
Do:
Copy code
properties.isNotEmpty() {
    properties.forEach { prop ->
We already eradicated
for
, now it’s `if`’s turn 🙂
👍🏻 4