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 ;

Applique l'opération correspondante aux éléments référencés et aux éléments de other .

Table des matières

Paramètres

other - tableau d'arguments pour récupérer les valeurs

Valeur de retour

(aucun)

Exceptions

Peut lever des exceptions définies par l'implémentation.

Exemple