Namespaces
Variants

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

From cppreference.net

std::slice_array
Member functions
slice_array::operator+= slice_array::operator-= slice_array::operator*= slice_array::operator/= slice_array::operator%= slice_array::operator&= slice_array::operator|= slice_array::operator^= slice_array::operator<<= slice_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 - 값을 검색할 인수 배열

반환값

(없음)

예외

구현 정의 예외를 던질 수 있습니다.

예제