std::gslice_array<T>:: operator+=,-=,*=,/=,%=,&=,|=,^=,<<=,>>=
From cppreference.net
<
cpp
|
numeric
|
valarray
|
gslice array
|
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
|
Cette section est incomplète
Raison : aucun exemple |