Macro konst::option::unwrap_or

source ·
macro_rules! unwrap_or {
    ($e:expr, $v:expr $(,)?) => { ... };
}
Expand description

A const equivalent of Option::unwrap_or

§Example

use konst::option;

const ARR: &[u32] = &[
    option::unwrap_or!(Some(3), 10000),
    option::unwrap_or!(None, 5),
];

assert_eq!(ARR, &[3, 5]);