Lines Matching refs:this
67 operator bool() const { return this->_cell; }
69 reference operator*() const { return this->_cell->value; }
70 pointer operator->() const { return &this->_cell->value; }
73 return this->_cell == other._cell;
76 return this->_cell != other._cell;
80 this->_cell = this->_cell->next;
81 return *this;
84 List old(*this);
85 this->_cell = this->_cell->next;
131 reference operator*() const { return this->_cell->value; }
132 pointer operator->() const { return &this->_cell->value; }
135 this->_cell = this->_cell->next;
136 return *this;
139 List old(*this);
140 this->_cell = this->_cell->next;
164 operator bool() const { return this->_cell; }
166 reference operator*() const { return this->_cell->value; }
167 pointer operator->() const { return &this->_cell->value; }
170 return this->_cell == other._cell;
173 return this->_cell != other._cell;
177 this->_cell = this->_cell->next;
178 return *this;
181 List old(*this);
182 this->_cell = this->_cell->next;
214 this->_cell = this->_cell->next;
215 return *this;
218 MutableList old(*this);
219 this->_cell = this->_cell->next;
312 * The results of calling this on an empty list are undefined.
333 * The results of calling this on an empty list are undefined.
359 * Results of calling this on an empty list are undefined.
379 * Results of calling this on an empty list are undefined.