std::indirect_array<T>::operator+=,-=,*=,/=,%=,&=,|=,^=,<<=,>>=
来自cppreference.com
< cpp | numeric | valarray | indirect
array
数值库
std::valarray
成员函数 | ||||
非成员函数 | ||||
辅助类 | ||||
推导指引(C++17) |
std::indirect_array
成员函数 | ||||
indirect_array::operator+=indirect_array::operator-=indirect_array::operator*=indirect_array::operator/=indirect_array::operator%=indirect_array::operator&=indirect_array::operator|=indirect_array::operator^=indirect_array::operator<<=indirect_array::operator>>=
|
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 | - | 作为获取值来源的参数数组 |
返回值
(无)
异常
可能会抛出由实现定义的异常。
示例
本节未完成 原因:暂无示例 |