Lines Matching refs:operator
39 Iterator operator+(int offset);
40 Iterator& operator+=(int offset);
41 Iterator operator++(int);
42 Iterator& operator++();
44 Iterator operator-(int offset);
45 int operator-(Iterator& itr);
46 Iterator& operator-=(int offset);
47 Iterator operator--(int);
48 Iterator& operator--();
50 Iterator& operator=(const Iterator& itr); variable
52 bool operator!=(const Iterator& itr) const;
53 bool operator==(const Iterator& itr) const;
55 bool operator<(const Iterator& itr) const;
56 bool operator>(const Iterator& itr) const;
58 bool operator<=(const Iterator& itr) const;
59 bool operator>=(const Iterator& itr) const;
61 uint8_t operator*() const;
62 uint8_t operator->() const;