Namespaces
Variants

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

From cppreference.net

std::indirect_array
Member functions
indirect_array::operator+= indirect_array::operator-= indirect_array::operator*= indirect_array::operator/= indirect_array::operator%= indirect_array::operator&= indirect_array::operator|= indirect_array::operator^= indirect_array::operator<<= indirect_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 - 値の取得元となる引数配列

戻り値

(なし)

例外

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