1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#[macro_export]
/// Helper macro for unwrapping `Option` values while returning early from function if value
/// is `None`. `try_some!(expr)` should be used only if function return type is `Option` and
/// `try_some!(expr => return)` should be used only if function return type is `()`.
macro_rules! try_some {
    ($expr:expr) => (match $expr {
        ::std::option::Option::Some(val) => val,
        ::std::option::Option::None => return ::std::option::Option::None,
    });

    ($expr:expr => return) => (match $expr {
        ::std::option::Option::Some(val) => val,
        ::std::option::Option::None => return,
    })
}

#[cfg(test)]
mod test {
    fn some(o: Option<()>) -> Option<()> {
        Some(try_some!(o))
    }

    #[test]
    fn value_on_some() {
        assert_eq!(some(Some(())), Some(()));
    }

    #[test]
    fn none_on_none() {
        assert_eq!(some(None), None);
    }

    #[test]
    fn abort_on_none() {
        fn some(o: Option<()>) {
            try_some!(o => return);

            assert!(false, "This should not happen!")
        }

        some(None)
    }

    #[test]
    #[should_panic]
    fn dont_abort_on_some() {
        fn some(o: Option<()>) {
            try_some!(o => return);

            assert!(false, "This should happen!")
        }

        some(Some(()))
    }
}