std::indirect_array<T>::运算符+=,-=,*=,/=,%=,&=,|=,^=,<<=,>>=
来自 cppreference.cn
< cpp | numeric | valarray | indirect array
void 运算符+=( const std::valarray<T>& other ) const; |
||
void 运算符-=( const std::valarray<T>& other ) const; |
||
void 运算符*=( const std::valarray<T>& other ) const; |
||
void 运算符/=( const std::valarray<T>& other ) const; |
||
void 运算符%=( const std::valarray<T>& other ) const; |
||
void 运算符&=( const std::valarray<T>& other ) const; |
||
void 运算符|=( const std::valarray<T>& other ) const; |
||
void 运算符^=( const std::valarray<T>& other ) const; |
||
void 运算符<<=( const std::valarray<T>& other ) const; |
||
void 运算符>>=( const std::valarray<T>& other ) const; |
||
将相应的操作应用于引用的元素和 other 的元素。
目录 |
[编辑] 参数
other | - | 从中检索值的参数数组 |
[编辑] 返回值
(无)
[编辑] 异常
可能抛出实现定义的异常。
[编辑] 示例
本节尚不完整 原因:没有示例 |