Macro quantum::m [] [src]

macro_rules! m {
    ( $( $( $i:expr ),* );* ) => { ... };
}

Convenience macro for matrix constuction.

We could make this more efficient by pattern matching on the five sizes and passing arrays to a constructor.

Adapted from [rust-la](https://github.com/xasmx/rust-la/blob/master/src/mac$