``` data .filter { it.hasErrors } .map { i...
# announcements
a
Copy code
data
    .filter { it.hasErrors }
    .map { it.error }
    .any { it is MyException }
    .apply { if (this) doThing() }
👍 1