diff options
| author | Chris Peterson <cpeterson@mozilla.com> | 2012-08-12 18:24:45 -0700 |
|---|---|---|
| committer | Brian Anderson <banderson@mozilla.com> | 2012-08-13 14:03:14 -0700 |
| commit | 9470e5d7d56b4e697e6ba96e8f0cc10c64f0bdf0 (patch) | |
| tree | bc10ef56c6d71c490c4e1e2d476953be956d0ab9 /src/libcore/f64.rs | |
| parent | af1a66a53c48f94c69bfc7cc571dd043d7a37355 (diff) | |
core: Export f32::ge(), f64::ge(), and float::ge()
Diffstat (limited to 'src/libcore/f64.rs')
| -rw-r--r-- | src/libcore/f64.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/f64.rs b/src/libcore/f64.rs index bc2c6faa69d..bb7768beba2 100644 --- a/src/libcore/f64.rs +++ b/src/libcore/f64.rs @@ -8,7 +8,7 @@ import cmath::c_double_targ_consts::*; // 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; |
