letr 0.1.1

The macro for the lazy.
Documentation

letr

The lazy way out.

fn get<T: Default>(value: Option<T>) -> T {
    letr![ Some(x) = value, T::default() ];
    x
}