macro_rules! m {
( $( $( $i:expr ),* );* ) => { ... };
}Expand description
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$