Namespaces
Variants

std::indirect_array<T>:: operator+=,-=,*=,/=,%=,&=,|=,^=,<<=,>>=

From cppreference.net

std::indirect_array
Member functions
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 - массив аргументов для получения значений

Возвращаемое значение

(нет)

Исключения

Может генерировать исключения, определяемые реализацией.

Пример