non-member functions | template <class T> valarray<T> operator* (const valarray<T>& lhs, const valarray<T>& rhs);template <class T> valarray<T> operator* (const T& val, const valarray<T>& rhs);template <class T> valarray<T> operator* (const valarray<T>& lhs, const T& val);template <class T> valarray<T> operator/ (const valarray<T>& lhs, const valarray<T>& rhs);template <class T> valarray<T> operator/ (const T& val, const valarray<T>& rhs);template <class T> valarray<T> operator/ (const valarray<T>& lhs, const T& val);template <class T> valarray<T> operator% (const valarray<T>& lhs, const valarray<T>& rhs);template <class T> valarray<T> operator% (const T& val, const valarray<T>& rhs);template <class T> valarray<T> operator% (const valarray<T>& lhs, const T& val);template <class T> valarray<T> operator+ (const valarray<T>& lhs, const valarray<T>& rhs);template <class T> valarray<T> operator+ (const T& val, const valarray<T>& rhs);template <class T> valarray<T> operator+ (const valarray<T>& lhs, const T& val);template <class T> valarray<T> operator- (const valarray<T>& lhs, const valarray<T>& rhs);template <class T> valarray<T> operator- (const T& val, const valarray<T>& rhs);template <class T> valarray<T> operator- (const valarray<T>& lhs, const T& val);template <class T> valarray<T> operator^ (const valarray<T>& lhs, const valarray<T>& rhs);template <class T> valarray<T> operator^ (const T& val, const valarray<T>& rhs);template <class T> valarray<T> operator^ (const valarray<T>& lhs, const T& val);template <class T> valarray<T> operator& (const valarray<T>& lhs, const valarray<T>& rhs);template <class T> valarray<T> operator& (const T& val, const valarray<T>& rhs);template <class T> valarray<T> operator& (const valarray<T>& lhs, const T& val);template <class T> valarray<T> operator| (const valarray<T>& lhs, const valarray<T>& rhs);template <class T> valarray<T> operator| (const T& val, const valarray<T>& rhs);template <class T> valarray<T> operator| (const valarray<T>& lhs, const T& val);template <class T> valarray<T> operator<< (const valarray<T>& lhs, const valarray<T>& rhs);template <class T> valarray<T> operator<< (const T& val, const valarray<T>& rhs);template <class T> valarray<T> operator<< (const valarray<T>& lhs, const T& val);template <class T> valarray<T> operator>> (const valarray<T>& lhs, const valarray<T>& rhs);template <class T> valarray<T> operator>> (const T& val, const valarray<T>& rhs);template <class T> valarray<T> operator>> (const valarray<T>& lhs, const T& val);template <class T> valarray<bool> operator&& (const valarray<T>& lhs, const valarray<T>& rhs);template <class T> valarray<bool> operator&& (const T& val, const valarray<T>& rhs);template <class T> valarray<bool> operator&& (const valarray<T>& lhs, const T& val);template <class T> valarray<bool> operator|| (const valarray<T>& lhs, const valarray<T>& rhs);template <class T> valarray<bool> operator|| (const T& val, const valarray<T>& rhs);template <class T> valarray<bool> operator|| (const valarray<T>& lhs, const T& val);template <class T> valarray<bool> operator== (const valarray<T>& lhs, const valarray<T>& rhs);template <class T> valarray<bool> operator== (const T& val, const valarray<T>& rhs);template <class T> valarray<bool> operator== (const valarray<T>& lhs, const T& val);template <class T> valarray<bool> operator!= (const valarray<T>& lhs, const valarray<T>& rhs);template <class T> valarray<bool> operator!= (const T& val, const valarray<T>& rhs);template <class T> valarray<bool> operator!= (const valarray<T>& lhs, const T& val);template <class T> valarray<bool> operator< (const valarray<T>& lhs, const valarray<T>& rhs);template <class T> valarray<bool> operator< (const T& val, const valarray<T>& rhs);template <class T> valarray<bool> operator< (const valarray<T>& lhs, const T& val);template <class T> valarray<bool> operator> (const valarray<T>& lhs, const valarray<T>& rhs);template <class T> valarray<bool> operator> (const T& val, const valarray<T>& rhs);template <class T> valarray<bool> operator> (const valarray<T>& lhs, const T& val);template <class T> valarray<bool> operator<= (const valarray<T>& lhs, const valarray<T>& rhs);template <class T> valarray<bool> operator<= (const T& val, const valarray<T>& rhs);template <class T> valarray<bool> operator<= (const valarray<T>& lhs, const T& val);template <class T> valarray<bool> operator>= (const valarray<T>& lhs, const valarray<T>& rhs);template <class T> valarray<bool> operator>= (const T& val, const valarray<T>& rhs);template <class T> valarray<bool> operator>= (const valarray<T>& lhs, const T& val); |
---|