core: Export f32::ge(), f64::ge(), and float::ge()

This commit is contained in:
Chris Peterson
2012-08-12 18:24:45 -07:00
committed by Brian Anderson
parent af1a66a53c
commit 9470e5d7d5
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -5,7 +5,7 @@
import cmath::c_float::*;
import cmath::c_float_targ_consts::*;
export add, sub, mul, div, rem, lt, le, gt, eq, ne;
export add, sub, mul, div, rem, lt, le, eq, ne, ge, gt;
export is_positive, is_negative, is_nonpositive, is_nonnegative;
export is_zero, is_infinite, is_finite;
export NaN, is_NaN, infinity, neg_infinity;
+1 -1
View File
@@ -8,7 +8,7 @@
// Even though this module exports everything defined in it,
// because it contains re-exports, we also have to explicitly
// export locally defined things. That's a bit annoying.
export add, sub, mul, div, rem, lt, le, gt, eq, ne;
export add, sub, mul, div, rem, lt, le, eq, ne, ge, gt;
export is_positive, is_negative, is_nonpositive, is_nonnegative;
export is_zero, is_infinite, is_finite;
export NaN, is_NaN, infinity, neg_infinity;
+2 -2
View File
@@ -4,7 +4,7 @@
// because it contains re-exports, we also have to explicitly
// export locally defined things. That's a bit annoying.
export to_str_common, to_str_exact, to_str, from_str;
export add, sub, mul, div, rem, lt, le, gt, eq, ne;
export add, sub, mul, div, rem, lt, le, eq, ne, ge, gt;
export is_positive, is_negative, is_nonpositive, is_nonnegative;
export is_zero, is_infinite, is_finite;
export NaN, is_NaN, infinity, neg_infinity;
@@ -28,7 +28,7 @@
import m_float = f64;
import f64::{add, sub, mul, div, rem, lt, le, gt, eq, ne};
import f64::{add, sub, mul, div, rem, lt, le, eq, ne, ge, gt};
import f64::logarithm;
import f64::{acos, asin, atan2, cbrt, ceil, copysign, cosh, floor};
import f64::{erf, erfc, exp, expm1, exp2, abs_sub};