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
;
|
||
Wendet die entsprechende Operation auf die referenzierten Elemente und die Elemente von
other
an.
Inhaltsverzeichnis |
Parameter
| other | - | Argumentenarray, aus dem die Werte abgerufen werden |
Rückgabewert
(keine)
Exceptions
Kann implementierungsdefinierte Ausnahmen auslösen.
Beispiel
|
Dieser Abschnitt ist unvollständig
Grund: Kein Beispiel |