std::indirect_array<T>::operator+=,-=,*=,/=,%=,&=,|=,^=,<<=,>>=
來自 cppreference.com
< cpp | 數值 | valarray | indirect_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` 的元素。
目錄 |
[編輯] 引數
其他 | - | 用於獲取值的引數陣列 |
[編輯] 返回值
(無)
[編輯] 異常
可能丟擲實現定義的異常。
[編輯] 示例
本節不完整 原因:無示例 |