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
;
|
||
参照先の要素と
other
の要素に対して対応する操作を適用します。
目次 |
パラメータ
| other | - | 値の取得元となる引数配列 |
戻り値
(なし)
例外
実装定義の例外をスローする可能性があります。
例
|
このセクションは不完全です
理由: 例がありません |