How to combine template partial specialization and template argument deduction
- by KKKoo0
My understanding is that template argument deduction is only for function templates, but function templates does not allow partial specialization. Is there a way to achieve both?
I basically want to achieve a function-like object (can be a functor) with the signature
template<class InputIterator1, class InputIterator2, class OutputIterator,…