letr 0.1.1

The macro for the lazy.
Documentation
1
2
3
4
5
6
7
8
9
10
# `letr`

The lazy way out.

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