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 | - | 값을 검색할 인수 배열 |
반환값
(없음)
예외
구현 정의 예외를 던질 수 있습니다.
예제
|
이 섹션은 불완전합니다
이유: 예시가 없음 |