hello.
Is there direct way to do the following:
template < class >
struct f {};
template < class F >
void function() {
F<int>(); //for example
// ? F template <int>();
}
function < f >();
I have workaround by using extra class around template struct. I am wondering if it's possible to do so directly.
Thanks