Probably ``` Try { foo() } .fold({ t -> whe...
# arrow
b
Probably
Copy code
Try { foo() }
    .fold({ t -> when(t) {
       is FooException -> ...
       is BarException -> ...
       else -> ...
  }}, { result -> ... })