std::mask_array<T>::operator+=,-=,*=,/=,%=,&=,|=,^=,<<=,>>=
From cppreference.com
< cpp | numeric | valarray | mask array
| 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の要素に、対応する演算を適用します。
目次 |
[編集] パラメータ
| その他 | - | 値を取得する引数配列 |
[編集] 戻り値
(なし)
[編集] 例外
実装定義の例外をスローする場合があります。
[編集] 例
| このセクションは未完成です 理由: 例がありません |