I'm trying to pass a 2x2 matrix to a constructor like this:
Matrix test = {{ 1, 2},
{ 5, 6}};
What would the constructor look like?
Matrix(?)
The answer in the linked questions did not sufficiently explain how they solved their original problem. I was lost in their generic array answer and am not sure how to use their solution for conventional types.