Macro mock_matrix

Source
macro_rules! mock_matrix {
    () => { ... };
    ($( $( $x: expr ),*);*) => { ... };
}
Expand description

Macro that helps with the construction of small dense (mock) matrices for testing.

Originally lifted from the rulinalg crate (author being the same as for this crate).