Namespaces
Variants

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

From cppreference.net

std::slice_array
Member functions
slice_array::operator+= slice_array::operator-= slice_array::operator*= slice_array::operator/= slice_array::operator%= slice_array::operator&= slice_array::operator|= slice_array::operator^= slice_array::operator<<= slice_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++コード - C++固有の用語(`void`, `operator`, `const`, `std::valarray`など) 翻訳すべき自然言語テキストが含まれていないため、出力は入力と同一となります。

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

目次

パラメータ

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

戻り値

(なし)

例外

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