Home | History | Annotate | Download | only in utils

Lines Matching full:operator

21 // Objects are copied into the list with the '=' operator or with copy-
38 * Objects added to the list are copied using the assignment operator,
108 * Dereference operator. Used to get at the juicy insides.
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);
306 * Assignment operator.
313 List<T>& List<T>::operator=(const List<T>& right)