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 ;
**번역 결과:** 모든 C++ 코드는 그대로 유지되었으며, HTML 태그와 속성도 원본 그대로 보존되었습니다. 코드 내의 텍스트(operator, const, void 등)는 C++ 특정 용어로 간주되어 번역되지 않았습니다.

참조된 요소들과 other 의 요소들에 해당 연산을 적용합니다.

목차

매개변수

other - 값을 검색할 인수 배열

반환값

(없음)

예외

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

예제