option-utils
A collection of utilities for working with Rust's Option type
Example
use OptionUtils;
let mut x = Some;
x.inner_mut;
assert_eq!;
let path = Some;
let path: = path.map_into;
assert_eq!;
let num = Some;
let num: = num.try_map_into?;
assert_eq!;```
## License
This project is licensed under the Apache-2.0 license.