Lines Matching refs:operator
110 _Type& operator*() const { return mpNode->getRef(); }
111 _Type* operator->() const { return &(mpNode->getRef()); }
116 inline bool operator==(const _Iter& right) const {
119 inline bool operator!=(const _Iter& right) const {
126 inline bool operator==(const OTHER& right) const {
130 inline bool operator!=(const OTHER& right) const {
136 inline _Iter& operator++() { // pre-increment
140 const _Iter operator++(int) { // post-increment
145 inline _Iter& operator--() { // pre-increment
149 const _Iter operator--(int) { // post-increment
178 List<T>& operator=(const List<T>& right); variable
313 List<T>& List<T>::operator=(const List<T>& right)