std::gslice_array<T>::operator+=,-=,*=,/=,%=,&=,|=,^=,<<=,>>=
提供: cppreference.com
< cpp | numeric | valarray | gslice array
void operator+=(conststd::valarray<T>& other )const; | ||
void operator-=(conststd::valarray<T>& other )const; | ||
void operator*=(conststd::valarray<T>& other )const; | ||
void operator/=(conststd::valarray<T>& other )const; | ||
void operator%=(conststd::valarray<T>& other )const; | ||
void operator&=(conststd::valarray<T>& other )const; | ||
void operator|=(conststd::valarray<T>& other )const; | ||
void operator^=(conststd::valarray<T>& other )const; | ||
void operator<<=(conststd::valarray<T>& other )const; | ||
void operator>>=(conststd::valarray<T>& other )const; | ||
参照先の要素と other
の要素に対応する演算を適用します。
目次 |
[編集]引数
other | - | 値を取得する引数の配列 |
[編集]戻り値
(なし)
[編集]例外
(なし)
[編集]例
This section is incomplete Reason: no example |