@@ -385,19 +385,6 @@ extern "platform-intrinsic" {
385
385
/// For floating-point values, uses IEEE-754 `maxNum`.
386
386
pub fn simd_reduce_max < T , U > ( x : T ) -> U ;
387
387
388
- /// Return the maximum element of a vector.
389
- ///
390
- /// `T` must be a vector of integer or floating-point primitive types.
391
- ///
392
- /// `U` must be the element type of `T`.
393
- ///
394
- /// For floating-point values, uses IEEE-754 `maxNum`.
395
- ///
396
- /// # Safety
397
- ///
398
- /// All input elements must be finite (i.e., not NAN and not +/- INF).
399
- pub fn simd_reduce_max_nanless < T , U > ( x : T ) -> U ;
400
-
401
388
/// Return the minimum element of a vector.
402
389
///
403
390
/// `T` must be a vector of integer or floating-point primitive types.
@@ -407,19 +394,6 @@ extern "platform-intrinsic" {
407
394
/// For floating-point values, uses IEEE-754 `minNum`.
408
395
pub fn simd_reduce_min < T , U > ( x : T ) -> U ;
409
396
410
- /// Return the minimum element of a vector.
411
- ///
412
- /// `T` must be a vector of integer or floating-point primitive types.
413
- ///
414
- /// `U` must be the element type of `T`.
415
- ///
416
- /// For floating-point values, uses IEEE-754 `minNum`.
417
- ///
418
- /// # Safety
419
- ///
420
- /// All input elements must be finite (i.e., not NAN and not +/- INF).
421
- pub fn simd_reduce_min_nanless < T , U > ( x : T ) -> U ;
422
-
423
397
/// Logical "and" all elements together.
424
398
///
425
399
/// `T` must be a vector of integer or floating-point primitive types.
0 commit comments