Namespaces
Variants

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

From cppreference.net

std::mask_array
Member functions
mask_array::operator+= mask_array::operator-= mask_array::operator*= mask_array::operator/= mask_array::operator%= mask_array::operator&= mask_array::operator|= mask_array::operator^= mask_array::operator<<= mask_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 태그는 원본 그대로 유지되었으며, 번역이 필요한 일반 텍스트만 한국어로 번역되었습니다. 위 표시된 내용은 이미 C++ 코드이므로 번역할 일반 텍스트가 포함되어 있지 않습니다.

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

목차

매개변수

other - 값을 검색할 인수 배열

반환값

(없음)

예외

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

예제