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 ;

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