tmp/tmp5fc_hsqi/{from.md → to.md}
RENAMED
|
@@ -29,11 +29,11 @@ namespace std {
|
|
| 29 |
```
|
| 30 |
|
| 31 |
This template is a helper template used by the mask subscript operator:
|
| 32 |
|
| 33 |
``` cpp
|
| 34 |
-
mask_array<T> valarray<T>::operator[](const valarray<bool>&)
|
| 35 |
```
|
| 36 |
|
| 37 |
It has reference semantics to a subset of an array specified by a
|
| 38 |
boolean mask. Thus, the expression `a[mask] = b;` has the effect of
|
| 39 |
assigning the elements of `b` to the masked elements in `a` (those for
|
|
|
|
| 29 |
```
|
| 30 |
|
| 31 |
This template is a helper template used by the mask subscript operator:
|
| 32 |
|
| 33 |
``` cpp
|
| 34 |
+
mask_array<T> valarray<T>::operator[](const valarray<bool>&);
|
| 35 |
```
|
| 36 |
|
| 37 |
It has reference semantics to a subset of an array specified by a
|
| 38 |
boolean mask. Thus, the expression `a[mask] = b;` has the effect of
|
| 39 |
assigning the elements of `b` to the masked elements in `a` (those for
|