htils 0.3.0

A tiny crate with few useful? macros.
Documentation
1
2
3
4
5
6
7
8
9
10
use htils::{debug, ifsome};

#[test]
fn testy() {
    
    let r = "ddd".parse::<i32>();
    
    ifsome!(r.err(), |e| debug!(e));
    
}