3 releases
Uses old Rust 2015
0.1.2 | Feb 8, 2016 |
---|---|
0.1.1 | Feb 8, 2016 |
0.1.0 | Feb 8, 2016 |
#28 in #ok
21 downloads per month
2KB
Rust Yolo
this crate allows using yolo
instead of the unwrap
function for Option and Result<T, E>
example:
extern crate yolo;
use yolo::Yolo;
fn get_result(v : i32) -> Result<i32, ()> {
Ok(v)
}
fn main() {
assert_eq!(Some(123).yolo(), 123);
assert_eq!(get_result(123).yolo(), 123);
println!("hello world!");
}
installation
use
[dependencies]
yolo = "*"
make sure you DONT'T pin it to a version -> YOLO!.
special thanks
special thanks to matthiasendler who recognized how important this crate is