Questions tagged [partial-specialization]

Partial template specialization is a particular form of class template specialization. Usually used in reference to the C++ programming language, it allows the programmer to specialize only some arguments of a class template, as opposed to explicit specialization, where all the template arguments are provided.

316 questions
-1
votes
1 answer

Methode specialization with two arguments in

I'm trying to specialize a methode based on the type of the first argument of the class template template class Histogram { // ... void resetMinMaxVal(); } template inline void Histogram
Mario
  • 302
  • 1
  • 8
1 2 3
21
22