- Examples
In this lesson, we'll look at a few examples of template specialization.
We'll cover the following...
We'll cover the following...
Example 1: template specialization #
Explanation #
In the example above, we’re modifying the code that we used in the previous lesson.
- The Primary template is called when we use values other than
Matrix<data_type, 3, 4>(line 43). - Partial specialization is called when we instantiate
Matrix<data_type, 3, 3>wheredata_typeis not anint