How to access Base template parameters from Derived that is intended as a specialization?
Because partial specialization of a templated member function is not possible in C++ I now try to circumvent this through class template inheritance.
In this approach, I derive from the base class, specifying only the template parameters for which I want to specialize, leaving the remainder as template parameters in the derived class: