名前空間
変種
操作

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

提供: cppreference.com
< cpp‎ | numeric‎ | valarray‎ | gslice array
 
 
 
 
std::gslice_array
メンバ関数
gslice_array::operator+=gslice_array::operator-=gslice_array::operator*=gslice_array::operator/=gslice_array::operator%=gslice_array::operator&=gslice_array::operator|=gslice_array::operator^=gslice_array::operator<<=gslice_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