Это легко сделать с помощью decltype
и std::begin
:
#include <iterator>
#include <utility>
namespace tricks{
using std::begin; // fallback for ADL
template<class C>
auto adl_begin(C& c) -> decltype(begin(c)); // undefined, not needed
template<class C>
auto adl_begin(C const& c) -> decltype(begin(c)); // undefined, not needed
}
template<typename TContainer>
class MyClass
{
public:
typedef decltype(tricks::adl_begin(std::declval<TContainer>())) iterator;
};
std::vector<int>::iterator i = MyClass<std::vector<int>>::iterator;
int *pi = MyClass<int[20]>::iterator;
Еще лучшим вариантом может быть использование Boost.Range:
#include <boost/range/metafunctions.hpp>
template<typename TContainer>
class MyClass
{
public:
typedef typename boost::range_iterator<TContainer>::type iterator;
};
std::vector<int>::iterator i = MyClass<std::vector<int>>::iterator;
int *pi = MyClass<int[20]>::iterator;