You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<cxx-signature><ins>template<class T, class Abi> simd<T, Abi> min(const simd<T, Abi>& a, const simd<T, Abi>& b) noexcept;</ins></cxx-signature>
2267
+
2268
+
<cxx-returns>
2269
+
<ins>
2270
+
The result of the element-wise application of <code>std::min(a[i], b[i])</code> for all <code>i</code> ∊ <code>[0, size())</code>.
2271
+
</ins>
2272
+
</cxx-returns>
2273
+
</cxx-function>
2274
+
2275
+
<cxx-function>
2276
+
<cxx-signature><ins>template<class T, class Abi> simd<T, Abi> max(const simd<T, Abi>& a, const simd<T, Abi>& b) noexcept;</ins></cxx-signature>
2277
+
2278
+
<cxx-returns>
2279
+
<ins>
2280
+
The result of the element-wise application of <code>std::max(a[i], b[i])</code> for all <code>i</code> ∊ <code>[0, size())</code>.
2281
+
</ins>
2282
+
</cxx-returns>
2283
+
</cxx-function>
2284
+
2285
+
<cxx-function>
2286
+
<cxx-signature><ins>
2287
+
template<class T, class Abi>
2288
+
pair<simd<T, Abi>, simd<T, Abi>> minmax(const simd<T, Abi>& a, const simd<T, Abi>& b) noexcept;</ins></cxx-signature>
2289
+
2290
+
<cxx-returns>
2291
+
<ins>
2292
+
A pair initialized with
2293
+
2294
+
<bl>
2295
+
<li>
2296
+
<ins>
2297
+
the result of element-wise application of <code>std::min(a[i], b[i])</code> for all <code>i</code> ∊ <code>[0, size())</code> in the <code>first</code> member, and
2298
+
2299
+
</ins>
2300
+
</li>
2301
+
2302
+
<li>
2303
+
<ins>
2304
+
the result of element-wise application of <code>std::max(a[i], b[i])</code> for all <code>i</code> ∊ <code>[0, size())</code> in the <code>second</code> member, and
2305
+
2306
+
</ins>
2307
+
</li>
2308
+
</bl>
2309
+
</ins>
2310
+
</cxx-returns>
2311
+
</cxx-function>
2312
+
2313
+
<cxx-function>
2314
+
<cxx-signature><ins>
2315
+
template<class T, class Abi> simd<T, Abi>
0 commit comments