buzz
buzz copied to clipboard
Express error of callbacks in functional helpers
Right now user is forced to handle error in callback because we can't forward the error to the helper. We would need something like:
list.reduce::<int, SomeError>(
fun (int i, int val, int acc) > int !> SomeError {
| ...
}
);