Standard C++ Library Reference ISO/IEC (VERSION3)
valarray::min
Ty min() const;
The member function returns the value of the smallest element of *this, which must have nonzero length.
If the length is greater than one, it compares values by applying operator< between pairs of elements of
class Ty.
valarray::operator Ty *
operator Ty *();
operator const Ty *() const;
Both member functions return a pointer to the first element of the controlled array, which must have at least
one element.
valarray::operator!
valarray<bool> operator!() const;
The member operator returns an object of class valarray<bool>, of length size(), each of whose
elements I is !(*this).
valarray::operator%=
valarray<Ty>& operator%=(const valarray<Ty>& right);
valarray<Ty>& operator%=(const Ty& right);
The member operator replaces each element I of *this with (*this)[I] % right[I]. It returns
*this.
valarray::operator&=
valarray<Ty>& operator&=(const valarray<Ty>& right);
valarray<Ty>& operator&=(const Ty& right);
The member operator replaces each element I of *this with (*this)[I] & right[I]. It returns
*this.
valarray::operator>>=
valarray<Ty>& operator>>=(const valarray<Ty>& right);
valarray<Ty>& operator>>=(const Ty& right);
The member operator replaces each element I of *this with (*this)[I] >> right[I]. It returns
*this.
valarray::operator<<=
valarray<Ty>& operator<<=(const valarray<Ty>& right);
valarray<Ty>& operator<<=(const Ty& right);