about summary refs log tree commit diff
path: root/src/libcore/num/f32.rs
AgeCommit message (Expand)AuthorLines
2015-01-06Unstabilise f32/f64 constants that are int/uint.Huon Wilson-7/+7
2015-01-06Deprecate the constant-returning functions in Float.Huon Wilson-0/+10
2015-01-03Remove deprecated functionalityAlex Crichton-76/+0
2014-12-23Rename and namespace `FPCategory`Tobias Bucher-8/+9
2014-11-18Fallout from deprecationAaron Turon-2/+2
2014-11-18libs: stabilize most numerics after RFC changesAaron Turon-4/+18
2014-11-16Remove core::num::strconvBrendan Zabarauskas-61/+3
2014-11-16Move FromStr to core::strBrendan Zabarauskas-1/+66
2014-11-13Remove Signed trait and add SignedInt traitBrendan Zabarauskas-0/+36
2014-11-13Remove lots of numeric traits from the preludesBrendan Zabarauskas-0/+2
2014-11-13Deprecate Zero and One traitsBrendan Zabarauskas-0/+6
2014-11-13Deprecate Bounded traitBrendan Zabarauskas-0/+6
2014-10-28Update code with new lint namesAaron Turon-1/+1
2014-10-20Handle negative numbers in `sqrt` properly.Huon Wilson-1/+5
2014-10-09core: Convert statics to constantsAlex Crichton-33/+33
2014-08-08libcore: Fix documentation comment for f32.Ruud van Asseldonk-1/+1
2014-07-29Improve documentation of rounding functionsPiotr Jawniak-17/+17
2014-07-10Add range lint for float literals, fixing #10934Falco Hirschenberger-0/+2
2014-05-31rustdoc: Create anchor pages for primitive typesAlex Crichton-0/+2
2014-05-28Move trait impls for primitives near trait definitionPiotr Jawniak-130/+1
2014-05-15core: Move intrinsic float functionality from stdAlex Crichton-1/+271
2014-05-07core: Get coretest workingAlex Crichton-2/+5
2014-05-07core: Inherit the specific numeric modulesAlex Crichton-0/+224
2013-05-22libstd: Rename libcore to libstd and libstd to libextra; update makefiles.Patrick Walton-1250/+0
2013-05-19Register snapshotsBrian Anderson-10/+0
2013-05-18Use cond! macro where appropriateBrendan Zabarauskas-2/+14
2013-05-17Implement sin_cos method for float, f64 and f32Brendan Zabarauskas-0/+6
2013-05-14Use static string with fail!() and remove fail!(fmt!())Björn Steinbrink-1/+1
2013-05-14Remove unnecessary infinity checkBrendan Zabarauskas-2/+1
2013-05-14Add ldexp and frexp functionsBrendan Zabarauskas-0/+60
2013-05-14Add inverse hyperbolic functionsBrendan Zabarauskas-0/+89
2013-05-13Make Float::classify matching more clear for f64 and f32Brendan Zabarauskas-10/+7
2013-05-08Remove #[cfg(notest)] and use #[cfg(not(test))] to cooincide with #[cfg(debug)]Zack Corr-9/+9
2013-05-07Add is_normal and classify methods to Float traitBrendan Zabarauskas-1/+54
2013-05-07Add abs_sub method to Signed traitBrendan Zabarauskas-1/+31
2013-05-07Fix order of methodsBrendan Zabarauskas-12/+13
2013-05-07Implement exp_m1 and ln_1p as methods for FloatBrendan Zabarauskas-5/+18
2013-05-07Switch to using 'ln' for the natural logarithm and 'log' for arbitrary base l...Brendan Zabarauskas-12/+14
2013-05-06Add assert_approx_eq! macroBrendan Zabarauskas-74/+65
2013-05-06Move FuzzyEq trait into core::cmp and rename it to 'ApproxEq'Brendan Zabarauskas-0/+25
2013-05-04Register snapshotsBrian Anderson-6/+1
2013-05-02libcore: Export core::from_str::FromStr from core::preludegifnksm-2/+1
2013-05-02Remove 'Local Variable' commentsBrendan Zabarauskas-10/+0
2013-05-01Revert rename of Div to QuotBrendan Zabarauskas-7/+2
2013-04-29Revert "Merge Exponential and Hyperbolic traits"Brendan Zabarauskas-0/+2
2013-04-29Merge Exponential and Hyperbolic traitsBrendan Zabarauskas-2/+0
2013-04-29Move appropriate functions out of Real and into separate Algebraic, Trigonome...Brendan Zabarauskas-72/+70
2013-04-27Propagate NaNs for Orderable methods impled on floating-point primitivesBrendan Zabarauskas-5/+26
2013-04-27Rename `nextafter` to `next_after` to match method name in FloatBrendan Zabarauskas-2/+2
2013-04-27Add additional constants to primitive floating point numbersBrendan Zabarauskas-0/+29