about summary refs log tree commit diff
path: root/src/libstd/num
diff options
context:
space:
mode:
authorDaniel Micay <danielmicay@gmail.com>2014-03-04 19:54:35 -0500
committerDaniel Micay <danielmicay@gmail.com>2014-03-05 11:20:50 -0500
commit2760974ec05966c811f1ee6f85bf59b13f28b009 (patch)
tree68d84ba69516afbecb642ad7cb9074292df3dbbd /src/libstd/num
parent6e7f170fedd3c526a643c0b2d13863acd982be02 (diff)
downloadrust-2760974ec05966c811f1ee6f85bf59b13f28b009.tar.gz
rust-2760974ec05966c811f1ee6f85bf59b13f28b009.zip
add correct floating point `min` and `max` methods.
The `std::cmp` functions are not correct for floating point types.

`min(NaN, 2.0)` and `min(2.0, NaN)` return different values, because
these functions assume a total order. Floating point types need special
`min`, `max` and `clamp` functions.
Diffstat (limited to 'src/libstd/num')
-rw-r--r--src/libstd/num/f32.rs11
-rw-r--r--src/libstd/num/f64.rs12
-rw-r--r--src/libstd/num/mod.rs3
3 files changed, 24 insertions, 2 deletions
diff --git a/src/libstd/num/f32.rs b/src/libstd/num/f32.rs
index a686edef99e..fb56444d265 100644
--- a/src/libstd/num/f32.rs
+++ b/src/libstd/num/f32.rs
@@ -9,6 +9,7 @@
 // except according to those terms.
 
 //! Operations and constants for 32-bits floats (`f32` type)
+
 #[allow(missing_doc)];
 
 use prelude::*;
@@ -312,6 +313,16 @@ impl Primitive for f32 {}
 
 impl Float for f32 {
     #[inline]
+    fn max(self, other: f32) -> f32 {
+        unsafe { cmath::c_float::fmax(self, other) }
+    }
+
+    #[inline]
+    fn min(self, other: f32) -> f32 {
+        unsafe { cmath::c_float::fmin(self, other) }
+    }
+
+    #[inline]
     fn nan() -> f32 { 0.0 / 0.0 }
 
     #[inline]
diff --git a/src/libstd/num/f64.rs b/src/libstd/num/f64.rs
index 026bd651e0e..7889041659a 100644
--- a/src/libstd/num/f64.rs
+++ b/src/libstd/num/f64.rs
@@ -23,8 +23,6 @@ use num::{Zero, One, Bounded, strconv};
 use num;
 use intrinsics;
 
-pub use cmp::{min, max};
-
 macro_rules! delegate(
     (
         $(
@@ -314,6 +312,16 @@ impl Primitive for f64 {}
 
 impl Float for f64 {
     #[inline]
+    fn max(self, other: f64) -> f64 {
+        unsafe { cmath::c_double::fmax(self, other) }
+    }
+
+    #[inline]
+    fn min(self, other: f64) -> f64 {
+        unsafe { cmath::c_double::fmin(self, other) }
+    }
+
+    #[inline]
     fn nan() -> f64 { 0.0 / 0.0 }
 
     #[inline]
diff --git a/src/libstd/num/mod.rs b/src/libstd/num/mod.rs
index 2051eeef60c..2f377a52ef8 100644
--- a/src/libstd/num/mod.rs
+++ b/src/libstd/num/mod.rs
@@ -313,6 +313,9 @@ pub enum FPCategory {
 pub trait Float: Signed
                + Round
                + Primitive {
+    fn max(self, other: Self) -> Self;
+    fn min(self, other: Self) -> Self;
+
     // FIXME (#5527): These should be associated constants
     fn nan() -> Self;
     fn infinity() -> Self;