oi-unwrap 0.1.1

unwrap without unwrap
Documentation
  • Coverage
  • 0%
    0 out of 2 items documented0 out of 0 items with examples
  • Size
  • Source code size: 884 B This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.01 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • BERADQ

oi-unwrap

unwrap without unwrap

example

use oi_unwrap::oi;
fn main() {
    let foo = Some(Some(Some(Some("hello"))));
    oi!(foo);
    oi!(foo);
    oi!(foo);
    oi!(foo);
    let _o = foo;
}