std::slice_array<T>:: operator+=,-=,*=,/=,%=,&=,|=,^=,<<=,>>=
From cppreference.net
<
cpp
|
numeric
|
valarray
|
slice 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 | - | массив аргументов для получения значений |
Возвращаемое значение
(нет)
Исключения
Может генерировать исключения, определяемые реализацией.
Пример
|
Этот раздел не завершён
Причина: отсутствует пример |