std::slice_array<T>::operator+=,-=,*=,/=,%=,&=,|=,^=,<<=,>>=
提供: cppreference.com
< cpp | numeric | valarray | slice 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
の要素に対応する���算を適用します。
目次 |
[編集] 引数
other | - | 値を取得する引数の配列 |
[編集] 戻り値
(なし)
[編集] 例外
(なし)
[編集] 例
This section is incomplete Reason: no example |