From Jason Turner

[simd.cond]

Diff to HTML by rtfpessoa

Files changed (1) hide show
  1. tmp/tmptvrp_rqd/{from.md → to.md} +11 -0
tmp/tmptvrp_rqd/{from.md → to.md} RENAMED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #### Exposition-only conditional operators <a id="simd.cond">[[simd.cond]]</a>
2
+
3
+ ``` cpp
4
+ friend constexpr basic_vec
5
+ simd-select-impl(const mask_type& mask, const basic_vec& a, const basic_vec& b) noexcept;
6
+ ```
7
+
8
+ *Returns:* A `basic_vec` object where the iᵗʰ element equals
9
+ `mask[`i`] ? a[`i`] : b[`i`]` for all i in the range of \[`0`,
10
+ `size()`).
11
+