Home | History | Annotate | Download | only in base

Lines Matching refs:Iter

26 template <typename Iter>
29 typedef Iter iterator;
30 typedef typename std::iterator_traits<Iter>::difference_type difference_type;
31 typedef typename std::iterator_traits<Iter>::value_type value_type;
32 typedef typename std::iterator_traits<Iter>::pointer pointer;
33 typedef typename std::iterator_traits<Iter>::reference reference;
47 template <typename Iter>
48 static inline IterationRange<Iter> MakeIterationRange(const Iter& begin_it, const Iter& end_it) {
49 return IterationRange<Iter>(begin_it, end_it);
52 template <typename Iter>
53 static inline IterationRange<Iter> MakeEmptyIterationRange(const Iter& it) {
54 return IterationRange<Iter>(it, it);