gabrielfv
04/23/2018, 7:57 PMif
or assigning it all to a variable, I just call it like that:
data
.filter { it.hasErrors }
.map { it.error }
.any { it is MyException }
.then { /*Treat that exception*/ }
arekolek
04/24/2018, 9:38 AMtakeIf
, ?.
and let