@@ -385,19 +385,6 @@ extern "platform-intrinsic" {
385385 /// For floating-point values, uses IEEE-754 `maxNum`.
386386 pub fn simd_reduce_max < T , U > ( x : T ) -> U ;
387387
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-
401388 /// Return the minimum element of a vector.
402389 ///
403390 /// `T` must be a vector of integer or floating-point primitive types.
@@ -407,19 +394,6 @@ extern "platform-intrinsic" {
407394 /// For floating-point values, uses IEEE-754 `minNum`.
408395 pub fn simd_reduce_min < T , U > ( x : T ) -> U ;
409396
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-
423397 /// Logical "and" all elements together.
424398 ///
425399 /// `T` must be a vector of integer or floating-point primitive types.
0 commit comments