Lines Matching defs:operator
60 T& operator[](size_t index) const {
65 const T& at(size_t index) const { return operator[](index); }
103 Vector<T> operator+(size_t offset) {
108 Vector<T> operator+=(size_t offset) {
116 operator Vector<const T>() const { return {start_, length_}; }
130 bool operator==(const Vector<const T> other) const {
134 bool operator!=(const Vector<const T> other) const {
135 return !operator==(other);
190 T& operator[](size_t index) const {
236 bool operator==(std::nullptr_t) const { return data_ == nullptr; }
237 bool operator!=(std::nullptr_t) const { return data_ != nullptr; }
314 EmbeddedVector& operator=(const EmbeddedVector&) = delete;