std::mask_array<T>::operator+=,-=,*=,/=,%=,&=,|=,^=,<<=,>>=
Min standard notice:
Applies the corresponding operation to the referred elements and the elements of other.
# Declarations
void operator+=( const std::valarray<T>& other ) const;
void operator-=( const std::valarray<T>& other ) const;
void operator*=( const std::valarray<T>& other ) const;
void operator/=( const std::valarray<T>& other ) const;
void operator%=( const std::valarray<T>& other ) const;
void operator&=( const std::valarray<T>& other ) const;
void operator|=( const std::valarray<T>& other ) const;
void operator^=( const std::valarray<T>& other ) const;
void operator<<=( const std::valarray<T>& other ) const;
void operator>>=( const std::valarray<T>& other ) const;
# Parameters
other: argument array to retrieve the values from
# Return value
(none)
# Example
This section is incompleteReason: no example