tmp/tmp3vpgyfel/{from.md → to.md}
RENAMED
|
@@ -1,6 +1,6 @@
|
|
| 1 |
-
#### `gslice_array` <a id="gslice.array.comp.assign">[[gslice.array.comp.assign]]</a>
|
| 2 |
|
| 3 |
``` cpp
|
| 4 |
void operator*= (const valarray<T>&) const;
|
| 5 |
void operator/= (const valarray<T>&) const;
|
| 6 |
void operator%= (const valarray<T>&) const;
|
|
@@ -11,10 +11,10 @@ void operator&= (const valarray<T>&) const;
|
|
| 11 |
void operator|= (const valarray<T>&) const;
|
| 12 |
void operator<<=(const valarray<T>&) const;
|
| 13 |
void operator>>=(const valarray<T>&) const;
|
| 14 |
```
|
| 15 |
|
| 16 |
-
These
|
| 17 |
indicated operation to the elements of the argument array and selected
|
| 18 |
elements of the `valarray<T>` object to which the `gslice_array` object
|
| 19 |
refers.
|
| 20 |
|
|
|
|
| 1 |
+
#### `gslice_array` compound assignment <a id="gslice.array.comp.assign">[[gslice.array.comp.assign]]</a>
|
| 2 |
|
| 3 |
``` cpp
|
| 4 |
void operator*= (const valarray<T>&) const;
|
| 5 |
void operator/= (const valarray<T>&) const;
|
| 6 |
void operator%= (const valarray<T>&) const;
|
|
|
|
| 11 |
void operator|= (const valarray<T>&) const;
|
| 12 |
void operator<<=(const valarray<T>&) const;
|
| 13 |
void operator>>=(const valarray<T>&) const;
|
| 14 |
```
|
| 15 |
|
| 16 |
+
These compound assignments have reference semantics, applying the
|
| 17 |
indicated operation to the elements of the argument array and selected
|
| 18 |
elements of the `valarray<T>` object to which the `gslice_array` object
|
| 19 |
refers.
|
| 20 |
|