Lines Matching refs:operator
44 Vector2 operator-() const;
45 Vector2 operator-(const Vector2<T>& other) const;
46 Vector2 operator+(const Vector2<T>& other) const;
47 Vector2 operator/(T scale) const;
48 Vector2 operator*(T scale) const;
49 Vector2 operator*(const Vector2<T>& other) const;
50 Vector2& operator*=(const Vector2<T>& other);
51 Vector2& operator+=(const Vector2<T>& other);
52 Vector2& operator=(const Vector2& other); variable
53 T operator[](int index) const;
54 T& operator[](int index);
55 bool operator==(const Vector2& other) const;
56 bool operator!=(const Vector2& other) const;
119 Vector2<T> Vector2<T>::operator-() const
129 Vector2<T> Vector2<T>::operator-(const Vector2<T>& other) const
140 Vector2<T> Vector2<T>::operator+(const Vector2<T>& other) const
147 Vector2<T> Vector2<T>::operator/(T scale) const
157 Vector2<T> Vector2<T>::operator*(T scale) const
168 Vector2<T> Vector2<T>::operator*(const Vector2<T>& other) const
175 Vector2<T>& Vector2<T>::operator*=(const Vector2<T>& other)
184 Vector2<T>& Vector2<T>::operator+=(const Vector2<T>& other)
192 Vector2<T>& Vector2<T>::operator=(const Vector2<T>& other)
201 T Vector2<T>::operator[](int index) const
207 inline T& Vector2<T>::operator[](int index)
213 inline bool Vector2<T>::operator==(const Vector2& other) const
221 inline bool Vector2<T>::operator!=(const Vector2& other) const