Helper macro for unwrapping Option
values while returning early with an
error if the value of the expression is None
. Can only be used in
functions that return Option
because of the early return of None
that
it provides.
```
extern crate tryopt;
///
use std::collections::HashMap;
///
fn mapaddchecked(map: &HashMap<&str, i32>, lhs: &str, rhs: &str) -> Option