Searched refs:MyIterator (Results 1 – 3 of 3) sorted by relevance
8 struct MyIterator { struct9 MyIterator(unsigned pos);10 MyIterator(const MyIterator &other);11 const MyIterator &operator=(const MyIterator &that);12 MyIterator &operator++();13 int operator-(const MyIterator &that) const;14 MyIterator &operator+=(unsigned a);15 MyIterator operator+(unsigned a) const;16 bool operator==(const MyIterator &that) const;17 bool operator!=(const MyIterator &that) const;[all …]
8 struct MyIterator { struct9 MyIterator(unsigned pos);10 MyIterator(const MyIterator &other);11 const MyIterator &operator=(const MyIterator &that);12 MyIterator &operator++();13 int operator-(const MyIterator &that) const;14 MyIterator &operator+=(unsigned a);15 MyIterator operator+(unsigned a) const;16 bool operator==(const MyIterator &that) const;24 MyIterator begin();[all …]
154 struct MyIterator { struct158 using iterator = MyIterator; argument