about summary refs log tree commit diff
path: root/src/libcore/num/f32.rs
AgeCommit message (Expand)AuthorLines
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
2013-04-27Add mul_add and next_after methods to FloatBrendan Zabarauskas-0/+16
2013-04-27Add Orderable traitBrendan Zabarauskas-0/+25
2013-04-26Add Int, Uint and Float traits for primitive numbersBrendan Zabarauskas-18/+32
2013-04-26Add Bitwise, Bounded, Primitive, and PrimitiveInt traitsBrendan Zabarauskas-0/+14
2013-04-26Use `///` doc-comment form instead of `/** */`Brendan Zabarauskas-138/+138
2013-04-26Add is_zero method to ZeroBrendan Zabarauskas-9/+7
2013-04-25Restore Round trait and move appropriate methods out of RealBrendan Zabarauskas-16/+98
2013-04-25Add Fractional, Real and RealExt traitsBrendan Zabarauskas-19/+192
2013-04-25Use #[cfg(not(stage0))] to exclude items from stage0Brendan Zabarauskas-8/+2
2013-04-25Move impls of `Num` out of core::num and clean up importsBrendan Zabarauskas-13/+12
2013-04-24Implement Signed and Unsigned traits and remove related predicate functionsBrendan Zabarauskas-40/+74
2013-04-23inline the primitive numeric operationsDaniel Micay-0/+13
2013-04-22Rename Div operator trait to Quot and Modulo operator trait to RemBrendan Zabarauskas-18/+31
2013-04-21librustc: use LLVM intrinsics for several floating point operations.Huon Wilson-72/+80
2013-04-18Add #[inline(always)] to each operator methodBrendan Zabarauskas-0/+6