Template Parameters
Let's familiarize ourselves with template parameters in this lesson.
We'll cover the following...
Alias Templates #
Alias templates aka template typedefs allow us to give a name to partially bound templates, which allows for partial specialization of templates.
template <typename T, int Line, int Col> class Matrix{
...
};
template <typename T, int Line>
using Square = Matrix<T, Line, Line>;
template <typename T, int Line>
using
...