Home | History | Annotate | Download | only in include

Lines Matching full:iterator

40 #include <iterator>
70 typedef typename impl_type::iterator iterator;
79 // - an iterator which points to the equivalent element in the set
82 pair<iterator, bool> insert(const value_type& elt) {
83 typename impl_type::iterator i = mImpl.begin();
86 return pair<iterator, bool>(i, false);
91 return pair<iterator, bool>(--mImpl.end(), true);
113 iterator begin() { return mImpl.begin(); }
114 iterator end() { return mImpl.end(); }