From Jason Turner

[simd.mask.binary]

Diff to HTML by rtfpessoa

Files changed (1) hide show
  1. tmp/tmph0n8fbnj/{from.md → to.md} +20 -0
tmp/tmph0n8fbnj/{from.md → to.md} RENAMED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #### Binary operators <a id="simd.mask.binary">[[simd.mask.binary]]</a>
2
+
3
+ ``` cpp
4
+ friend constexpr basic_mask
5
+ operator&&(const basic_mask& lhs, const basic_mask& rhs) noexcept;
6
+ friend constexpr basic_mask
7
+ operator||(const basic_mask& lhs, const basic_mask& rhs) noexcept;
8
+ friend constexpr basic_mask
9
+ operator& (const basic_mask& lhs, const basic_mask& rhs) noexcept;
10
+ friend constexpr basic_mask
11
+ operator| (const basic_mask& lhs, const basic_mask& rhs) noexcept;
12
+ friend constexpr basic_mask
13
+ operator^ (const basic_mask& lhs, const basic_mask& rhs) noexcept;
14
+ ```
15
+
16
+ Let *op* be the operator.
17
+
18
+ *Returns:* A `basic_mask` object initialized with the results of
19
+ applying *op* to `lhs` and `rhs` as a binary element-wise operation.
20
+