Apparently something like this is not currently possible:
template<typena me T>
typedef bool(*VectComp) (const std::vector<T>& , const std::vector<T>& );
void foo(VectComp<in t>);
template<typena me T>
void bar(VectComp<T> );
Will this be possible in the next C++ standard?
template<typena me T>
typedef bool(*VectComp) (const std::vector<T>& , const std::vector<T>& );
void foo(VectComp<in t>);
template<typena me T>
void bar(VectComp<T> );
Will this be possible in the next C++ standard?
Comment