I have a class template with a large number of potential template parameters
where I would like to use boost parameter.
I understand that I can use integers with the int_<> wrapper, but is there
any trick or design pattern to allow template template's?
The problem is that I have class templates such as an interpolator which
will take in a type and a dimension size, and a variety of function objects
of the same type. If I can't use template templates, I am not sure how to
make the design sane.
For example, right now I have something like:
template