名前空間
変種
操作

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

提供: cppreference.com
 
 
 
 
std::indirect_array
メンバ関数
indirect_array::operator+=indirect_array::operator-=indirect_array::operator*=indirect_array::operator/=indirect_array::operator%=indirect_array::operator&=indirect_array::operator|=indirect_array::operator^=indirect_array::operator<<=indirect_array::operator>>=
 
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 - 値を取得する引数の配列

[編集]戻り値

(なし)

[編集]例外

(なし)

[編集]

close