1 stable release

1.0.0 Jun 17, 2024

#5 in #returning

Download history 195/week @ 2024-06-17 83/week @ 2024-06-24 7/week @ 2024-07-01 3/week @ 2024-08-12 2/week @ 2024-08-19 42/week @ 2024-08-26 8/week @ 2024-09-02

55 downloads per month
Used in 7 crates (3 directly)

MIT license

3KB

possibly

A single exported macro called possibly!(), which works std::matches!() but allowing to return a value when the values matches.

It can be useful if you want to use pattern matching without dealing with extra cases.

The result is wrapped inside an Option.

Usage

use possibly::possibly;

enum MyEnum {
    Foo(u32),
    Bar
}

let value = MyEnum::Foo(1);

// basic usage with simple match arm
assert_eq!(
    possibly!(value, MyEnum::Foo(b) => b), 
    Some(1)
);

// with match arm condition
assert_eq!(
    possibly!(value, MyEnum::Foo(b) if i > 5 => b),
    None
);

No runtime deps