std::slice_array::operator+=,-=,*=,/=,%=,&=,|=,^=,<<=,>>=
来自cppreference.com
< cpp | numeric | valarray | slice array
void operator+=( const std::valarray<T>& other ); |
||
void operator-=( const std::valarray<T>& other ); |
||
void operator*=( const std::valarray<T>& other ); |
||
void operator/=( const std::valarray<T>& other ); |
||
void operator%=( const std::valarray<T>& other ); |
||
void operator&=( const std::valarray<T>& other ); |
||
void operator|=( const std::valarray<T>& other ); |
||
void operator^=( const std::valarray<T>& other ); |
||
void operator<<=( const std::valarray<T>& other ); |
||
void operator>>=( const std::valarray<T>& other ); |
||
应用给定的运算到所引用元素和 other
的元素。
目录 |
[编辑] 参数
other | - | 自之获取值的参数数组 |
[编辑] 返回值
(无)
[编辑] 异常
(无)
[编辑] 示例
本节未完成 原因:暂无示例 |