Short question: Is there a shorter way to do this
array,n>,m> matrix;
I was hoping for something like
A template alias might help out:
#include template using Matrix = std::array, I>; int main() { Matrix matrix; }