The previous problem was awkward because avoiding unwrap
forced us to nest deeper and
deeper when what we really wanted was to get the variable out. So, is there any way
to accomodate this approach without panic
? Well, what is a valid action to take when
an Err
is found? It turns out there are two:
panic!
which we already decided to try to avoid if possiblereturn
because an Err
means it cannot be handledThis is exactly the purpose of try!
; it is almost1 exactly equivalent to an
unwrap
which returns
instead of panics
on Errs
.
This really is a huge improvement but there is still the nagging issue of map_err
. There is
actually a way to avoid it (we are using it everywhere it seems) but we are still missing some
details. First, we have to learn how to make better errors.
1. See re-enter try! for more details. ↩
Result
and io::Result