Macro complex

Source
macro_rules! complex {
    ($real:expr, $imag:expr) => { ... };
}
Expand description

Creates new complex number where real = first argument and imag = second argument.