Lines Matching full:operator
153 // Support operator-> to get to the container. This allows nicer syntax like:
156 ContainerType* operator->() { return &container_; }
157 const ContainerType* operator->() const { return &container_; }
217 // foo->push_back(22); // we have overloaded operator->
218 // foo[0] = 10; // as well as operator[]
240 StackVector<T, stack_capacity>& operator=(
247 // operator-> (using "->at()" does exception stuff we don't want).
248 T& operator[](size_t i) { return this->container().operator[](i); }
249 const T& operator[](size_t i) const {
250 return this->container().operator[](i);