Home
last modified time | relevance | path

Searched defs:iterator_wrapper (Results 1 – 2 of 2) sorted by relevance

/third_party/boost/libs/proto/example/
Dmixed.cpp35 struct iterator_wrapper struct
39 explicit iterator_wrapper(Iter iter) in iterator_wrapper() argument
54 iterator_wrapper<typename boost::remove_reference<Cont>::type::const_iterator> argument
/third_party/boost/boost/circular_buffer/
Ddetails.hpp90 struct iterator_wrapper { struct
91 mutable Iterator m_it;
92 explicit iterator_wrapper(Iterator it) : m_it(it) {} in iterator_wrapper() function
93 Iterator operator () () const { return m_it++; } in operator ()()