This repository has been archived on 2025-03-22. You can view files and clone it, but cannot push or open issues or pull requests.
travelguide/std/iterator.hpp

24 lines
449 B
C++

#pragma once
#include <iterator>
using std::back_inserter;
using std::distance;
namespace impl
{
template <class ContT>
class BackInserterFn
{
ContT & m_cont;
public:
BackInserterFn(ContT & cont) : m_cont(cont) {}
template <class T> void operator() (T const & t) { m_cont.push_back(t); }
};
}
template <class ContT>
impl::BackInserterFn<ContT> MakeBackInserter(ContT & cont)
{
return impl::BackInserterFn<ContT>(cont);
}