std::gslice_array<T>:: operator+=,-=,*=,/=,%=,&=,|=,^=,<<=,>>=
From cppreference.net
<
cpp
|
numeric
|
valarray
|
gslice array
|
void
operator
+
=
(
const
std::
valarray
<
T
>
&
otro
)
const
;
|
||
|
void
operator
-
=
(
const
std::
valarray
<
T
>
&
otro
)
const
;
|
||
|
void
operator
*
=
(
const
std::
valarray
<
T
>
&
otro
)
const
;
|
||
|
void
operator
/
=
(
const
std::
valarray
<
T
>
&
otro
)
const
;
|
||
|
void
operator
%
=
(
const
std::
valarray
<
T
>
&
otro
)
const
;
|
||
|
void
operator
&
=
(
const
std::
valarray
<
T
>
&
otro
)
const
;
|
||
|
void
operator
|
=
(
const
std::
valarray
<
T
>
&
otro
)
const
;
|
||
|
void
operator
^
=
(
const
std::
valarray
<
T
>
&
otro
)
const
;
|
||
|
void
operator
<<=
(
const
std::
valarray
<
T
>
&
otro
)
const
;
|
||
|
void
operator
>>=
(
const
std::
valarray
<
T
>
&
otro
)
const
;
|
||
Aplica la operación correspondiente a los elementos referenciados y a los elementos de
other
.
Contenidos |
Parámetros
| other | - | array de argumentos del cual recuperar los valores |
Valor de retorno
(ninguno)
Excepciones
Puede lanzar excepciones definidas por la implementación.
Ejemplo
|
Esta sección está incompleta
Razón: sin ejemplo |