A collection of utilities for working with Rust's Option type
```rust use optionutils::OptionUtils; let mut x = Some("Hello world".toowned()); x.innermut(|s| s.push('!')); asserteq!(x, Some("Hello world!".to_owned()));
let path = Some("dir");
let path: Option
let num = Some(10u64);
let num: Option
This project is licensed under the Apache-2.0 license.