From Jason Turner

[simd.mask.comparison]

Diff to HTML by rtfpessoa

Files changed (1) hide show
  1. tmp/tmpcxxv6k8v/{from.md → to.md} +22 -0
tmp/tmpcxxv6k8v/{from.md → to.md} RENAMED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #### Comparisons <a id="simd.mask.comparison">[[simd.mask.comparison]]</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
+ friend constexpr basic_mask
15
+ operator<(const basic_mask& lhs, const basic_mask& rhs) noexcept;
16
+ ```
17
+
18
+ Let *op* be the operator.
19
+
20
+ *Returns:* A `basic_mask` object initialized with the results of
21
+ applying *op* to `lhs` and `rhs` as a binary element-wise operation.
22
+