このかなり不自然な例では、関数テンプレートを関数に渡そうとしており、関数に関数テンプレートを内部でインスタンス化させたいと考えています。本質的には、ユーザーに関数のタイプと動作を知られたくないのですが、関数テンプレートを渡して自分自身をインスタンス化することができます。自己完結型の例(コンパイルされません):
#include <iostream>
#include <vector>
#include <iterator>
#include <algorithm>
template <template <typename InputIt, typename OutputIt> class CopyFunc>
void transferWith( CopyFunc<std::vector<int>::const_iterator,
std::back_insert_iterator<std::vector<int>>> const& func )
{
std::vector<int> source{1, 2, 3, 4, 5, 6, 7};
std::vector<int> sink;
func(source.begin(), source.end(), std::back_inserter(sink));
for (auto&& e : sink)
{
std::cout << e << std::endl;
}
}
int main(int argc, char const *argv[])
{
// I want to pass just the function template in,
// and instantiate it internally
transferWith(std::copy);
return 0;
}
これは、gcc-4.7.2で期待どおりにコンパイルできず、次のエラーが発生します。
main.cpp|25 col 27 error| no matching function for call to ‘transferWith(<unresolved overloaded function type>)’
main.cpp|8 col 6 error| note: template<template<class InputIt, class OutputIt> class CopyFunc> void transferWith(const CopyFunc<__gnu_cxx::__normal_iterator<const int*, std::vector<int> >, std::back_insert_iterator<std::vector<int> > >&)
main.cpp|25 col 27 error| note: couldn't deduce template parameter ‘template<class InputIt, class OutputIt> class CopyFunc’
これを回避するために引っ張ることができるトリックや間接的なものはありますか?
ありがとうございました。