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 | - | 要从中检索值的数组参数 |
[编辑] 返回值
(无)
[编辑] 异常
可能引发实现定义的异常。
[编辑] 示例
本节内容不完整 原因:没有示例 |