about summary refs log tree commit diff
path: root/src/libstd/num/f32.rs
AgeCommit message (Collapse)AuthorLines
2013-08-19Add externfn macro and correctly label fixed_stack_segmentsNiko Matsakis-1/+1
2013-08-16doc: correct spelling in documentation.Huon Wilson-1/+1
2013-07-08 Replaces the free-standing functions in f32, &c.Jens Nockert-49/+15
The free-standing functions in f32, f64, i8, i16, i32, i64, u8, u16, u32, u64, float, int, and uint are replaced with generic functions in num instead. If you were previously using any of those functions, just replace them with the corresponding function with the same name in num. Note: If you were using a function that corresponds to an operator, use the operator instead.
2013-07-01rustc: add a lint to enforce uppercase statics.Huon Wilson-0/+1
2013-06-30Specialize to_str_common for floats/integers in strconvAlex Crichton-11/+11
This allows the integral paths to avoid allocations on the heap Closes #4424, #4423
2013-06-18replace #[inline(always)] with #[inline]. r=burningtree.Graydon Hoare-129/+129
2013-06-11std: convert pow, hypot, atan2, log to take arguments by reference.Huon Wilson-4/+4
2013-05-30Require documentation by default for libstdAlex Crichton-0/+1
Adds documentation for various things that I understand. Adds #[allow(missing_doc)] for lots of things that I don't understand.
2013-05-29librustc: Stop reexporting the standard modules from prelude.Patrick Walton-1/+6
2013-05-29Changed to a more efficient implementation.Matthijs Hofstra-8/+2
2013-05-29Replaced calls to external fmin/fmax by a Rust implementation.Matthijs Hofstra-2/+16
2013-05-27syntax highlight code examples in docstringsDaniel Micay-1/+1
2013-05-23cleanup warnings from libstdErick Tryzelaar-1/+0
2013-05-22libstd: Rename libcore to libstd and libstd to libextra; update makefiles.Patrick Walton-0/+1250
This only changes the directory names; it does not change the "real" metadata names.