tmp/tmpmgbjh2fr/{from.md → to.md}
RENAMED
|
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#### Compound assignment <a id="simd.mask.cassign">[[simd.mask.cassign]]</a>
|
| 2 |
+
|
| 3 |
+
``` cpp
|
| 4 |
+
friend constexpr basic_mask&
|
| 5 |
+
operator&=(basic_mask& lhs, const basic_mask& rhs) noexcept;
|
| 6 |
+
friend constexpr basic_mask&
|
| 7 |
+
operator|=(basic_mask& lhs, const basic_mask& rhs) noexcept;
|
| 8 |
+
friend constexpr basic_mask&
|
| 9 |
+
operator^=(basic_mask& lhs, const basic_mask& rhs) noexcept;
|
| 10 |
+
```
|
| 11 |
+
|
| 12 |
+
Let *op* be the operator.
|
| 13 |
+
|
| 14 |
+
*Effects:* These operators apply *op* to `lhs` and `rhs` as a binary
|
| 15 |
+
element-wise operation.
|
| 16 |
+
|
| 17 |
+
*Returns:* `lhs`.
|
| 18 |
+
|