Namespaces
Variants

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

From cppreference.net

std::gslice_array
Member functions
gslice_array::operator+= gslice_array::operator-= gslice_array::operator*= gslice_array::operator/= gslice_array::operator%= gslice_array::operator&= gslice_array::operator|= gslice_array::operator^= gslice_array::operator<<= gslice_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 ;
**注記**: 提供されたHTMLコードはC++の演算子オーバーロード宣言を含んでおり、すべてのテキストが` `タグ内に含まれているため、翻訳対象外となります。HTMLタグ、属性、C++コードはすべて原文のまま保持されています。

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

目次

パラメータ

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

戻り値

(なし)

例外

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