rust-shortcuts 0.1.3

rust-shortcuts, shortcuts to tidy up your rust code
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mod shortcuts {
    pub fn is_odd(val: isize) -> bool {
        if val % 2 != 0 {
            true
        } else {
            false
        }
    }
}

#[test]
fn test_odd() {
    assert!(shortcuts::is_odd(1) == true);
    assert!(shortcuts::is_odd(2) == false);    
}