[][src]Macro const_if::const_if

macro_rules! const_if {
    ($cond: expr => $if_true:expr;$if_false: expr) => { ... };
    ($cond : expr => $if_true: expr;
        $(elif $cond2: expr => $if_t2:expr;)*
        else $if_false:expr
    ) => { ... };
}