pair<T> operator-() const; pair<T> operator+(const pair<T>& o) const; pair<T> operator-(const pair<T>& o) const; pair<T> operator*(const pair<T>& o) const; pair<T> operator/(const pair<T>& o) const; pair<T>& operator+=(const pair<T>& o); pair<T>& operator-=(const pair<T>& o); pair<T>& operator*=(const pair<T>& o); pair<T>& operator/=(const pair<T>& o); pair<T> operator+(const T o) const; pair<T> operator-(const T o) const; pair<T> operator*(const T o) const; pair<T> operator/(const T o) const; pair<T>& operator+=(const T o); pair<T>& operator-=(const T o); pair<T>& operator*=(const T o); pair<T>& operator/=(const T o);
These operators execute the respective equivalent C++ standard arithmetic operation on the pair<T>.