std::slice_array<T>::operator+=,-=,*=,/=,%=,&=,|=,^=,<<=,>>=
De fr.cppreference.net
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.
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
|
Cette section est incomplète
Raison : aucun exemple |