Lines Matching refs:operator
36 Iterator operator+(size_t offset);
37 Iterator& operator+=(size_t offset);
38 Iterator operator++(int);
39 Iterator& operator++();
41 Iterator operator-(size_t offset);
42 int operator-(const Iterator& itr);
43 Iterator& operator-=(size_t offset);
44 Iterator operator--(int);
45 Iterator& operator--();
47 Iterator& operator=(const Iterator& itr); variable
49 bool operator!=(const Iterator& itr) const;
50 bool operator==(const Iterator& itr) const;
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 uint8_t operator*() const;