about summary refs log tree commit diff
path: root/src/libcore/cmath.rs
AgeCommit message (Collapse)AuthorLines
2013-02-03Moved all numeric modules in core into own directoryMarvin Löbel-272/+0
Reason: Better grouping of related modules, future-proving for a more extensive math library.
2013-01-10librustc: Make all external functions unsafe. r=tjcPatrick Walton-94/+95
2012-12-03Update license, add license boilerplate to most files. Remainder will follow.Graydon Hoare-0/+10
2012-10-15rustc: Merge module and type namespaces. r=brsonPatrick Walton-2/+2
2012-10-05Remove uses of mutable ref mode.Tim Chevalier-8/+8
It's still in the compiler right now, but warned about
2012-10-05Revert "wip"Tim Chevalier-8/+8
This reverts commit ca49fd402af8e7bf613c43e996274b5a017958d2.
2012-10-05wipTim Chevalier-8/+8
2012-09-26libcore: De-export cleanup, cmath, future, gc, hash, iter-trait, mutable, ↵Patrick Walton-58/+50
and private
2012-09-23core: Un-legacy-export stackwalk, cmathBrian Anderson-34/+24
2012-09-21Install new pub/priv/export rules as defaults, old rules accessible under ↵Graydon Hoare-0/+8
#[legacy_exports];
2012-09-19core: Clean up crate docs and give all mods a brief descriptionBrian Anderson-0/+1
2012-09-04Merge pull request #3383 from crabtw/fbsdBrian Anderson-6/+0
use native log2 function and enable freebsd tests in uv_ll
2012-09-04libcore: "import" -> "use"Patrick Walton-3/+3
2012-09-05use native log2 function and enable freebsd tests in uv_llJyun-Yan You-6/+0
2012-08-13De-mode-ify a few minor libcore modules.Graydon Hoare-0/+4
2012-07-03Switch 'native' to 'extern' (or 'foreign' in some descriptions)Graydon Hoare-2/+2
2012-06-21Tag all remaining FIXMEs with bugs. Install rule in tidy script to enforce this.Graydon Hoare-10/+8
2012-06-07Use #[cfg(unix)] and #[cfg(windows)] everywhereBrian Anderson-8/+4
2012-03-15Associate FIXMEs with issue numbers (comments only)Tim Chevalier-2/+7
2012-03-12Libc/os/run/rand/io reorganization. Close #1373. Close #1638.Graydon Hoare-3/+3
- Move io, run and rand to core. - Remove incorrect ctypes module (use libc). - Remove os-specific modules for os and fs. - Split fs between core::path and core::os.
2012-01-16add lgamma functions for FreeBSDJyun-Yan You-0/+2
2012-01-05libcore: Use correct link name for lgamma_r on win32Brian Anderson-0/+5
2012-01-05Attempt to fix build breakage due to lgammaf_r having two leading ↵Graydon Hoare-0/+8
underscores on mingw.
2012-01-05Merge branch 'master' into kmathStefan Plantikow-22/+24
2012-01-05added preliminary support for per-architecture generation of math constants ↵Stefan Plantikow-1/+102
(for porting)
2012-01-05Merge branch 'master' into kmathStefan Plantikow-10/+28
Conflicts: src/libcore/cmath.rs
2012-01-01freebsd supportUser Jyyou-0/+6
2011-12-31core: added support for bessel functionsStefan Plantikow-15/+12
2011-12-31core: killed all math wrappersStefan Plantikow-11/+23
2011-12-31Trying to remove wrappers from floatStefan Plantikow-94/+96
2011-12-31added more ops to cmathStefan Plantikow-0/+44
2011-12-14Moved std::math to std::coreStefan Plantikow-0/+82
- merges math and float into core::float - Splits core::ctypes into core::ctypes and core::mtypes - cmath is not exported - stdtest::math passes