summary refs log tree commit diff
path: root/src/libcore/f64.rs
AgeCommit message (Collapse)AuthorLines
2012-07-04convert doc-attributes to doc-comments using ↵Gareth Daniel Smith-33/+29
./src/etc/sugarise-doc-comments.py (and manually tweaking) - for issue #2498
2012-06-25Remove redundant 'extension' mods from numeric modsBrian Anderson-15/+15
2012-06-25Automatically export methods on core numeric typesBen Striegel-11/+13
Each numeric type now contains an extensions module that is automatically exported. At the moment each extensions module contains only the impl for the `num::num` iface. Other impls soon to follow (hopefully).
2012-06-21Tag all remaining FIXMEs with bugs. Install rule in tidy script to enforce this.Graydon Hoare-9/+6
2012-06-07Add neg() to the num ifacePatrick Walton-0/+1
2012-06-07libcore: Add a num typeclassPatrick Walton-0/+13
2012-06-04Machine types are different from int/uint, etc (Issue #2187)Eric Holk-0/+4
2012-03-15Comments only: associate FIXMEs in float libs with issue numbersTim Chevalier-5/+9
2012-03-13Name types after their modules instead of 't'Brian Anderson-2/+0
2012-03-09core: Convert to rustdocBrian Anderson-67/+32
2012-02-11core: Fill out missing functions for basic typesBrian Anderson-1/+1
2012-02-11core: Add modules for remaining scalar typesBrian Anderson-1/+1
2012-02-07core: Export floor functionsBrian Anderson-1/+1
2012-01-26rustdocs for f32.rs and f64.rsRoland Tanglao-122/+68
2012-01-22core: Reexport all the imports in f32/64Brian Anderson-0/+16
2012-01-05Moved generic float::min, max to core::math and cleaned up some importsStefan Plantikow-0/+6
2012-01-05Merge branch 'master' into kmathStefan Plantikow-1/+1
2012-01-05added preliminary support for per-architecture generation of math constants ↵Stefan Plantikow-1/+11
(for porting)
2012-01-05Merge branch 'master' into kmathStefan Plantikow-9/+49
Conflicts: src/libcore/cmath.rs
2012-01-01freebsd supportUser Jyyou-0/+5
2011-12-31core: added support for bessel functionsStefan Plantikow-37/+38
2011-12-31core: killed all math wrappersStefan Plantikow-101/+82
2011-12-31Trying to remove wrappers from floatStefan Plantikow-5/+93
2011-12-31added useful constants to mathStefan Plantikow-0/+24
2011-12-14Moved std::math to std::coreStefan Plantikow-0/+125
- merges math and float into core::float - Splits core::ctypes into core::ctypes and core::mtypes - cmath is not exported - stdtest::math passes