macro_rules! complex {
($real:expr, $imag:expr) => { ... };
}
Expand description
Creates new complex number where real
= first argument and imag
= second argument.
macro_rules! complex {
($real:expr, $imag:expr) => { ... };
}
Creates new complex number where real
= first argument and imag
= second argument.