Namespaces
Variants

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

From cppreference.net

std::gslice_array
Member functions
gslice_array::operator+= gslice_array::operator-= gslice_array::operator*= gslice_array::operator/= gslice_array::operator%= gslice_array::operator&= gslice_array::operator|= gslice_array::operator^= gslice_array::operator<<= gslice_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