Namespaces
Variants

std::mask_array<T>:: operator+=,-=,*=,/=,%=,&=,|=,^=,<<=,>>=

From cppreference.net

std::mask_array
Member functions
mask_array::operator+= mask_array::operator-= mask_array::operator*= mask_array::operator/= mask_array::operator%= mask_array::operator&= mask_array::operator|= mask_array::operator^= mask_array::operator<<= mask_array::operator>>=
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 ;

参照先の要素と other の要素に対して対応する操作を適用します。

目次

パラメータ

other - 値の取得元となる引数配列

戻り値

(なし)

例外

実装定義の例外をスローする可能性があります。