The C++17 allows using auto as template parameter. The parameter shall become a non-type in this…
Tag: c++ templates
Template type deduction in functions
instantiate the templates without specifying template type. The compiler can itself performs template type deduction by…
Class Template Argument Deduction in C++17
from C++17, this rule is relaxed and there is concept of class template argument deduction. Therefore,…
C++ Templates: Partial Template Specialization
Partial template specialization means to rewrite C++ templates by explicitly specifying a few but not all…