summary refs log tree commit diff
path: root/src/libcore/fmt/float.rs
AgeCommit message (Expand)AuthorLines
2017-12-19Always print floats with a decimal point with the Debug formatterDiggory Blake-8/+9
2017-05-09fix confusion about parts required for float formattingNathan Froyd-4/+4
2017-04-28fmt: use mem::uninitialized for float formatting buffersNathan Froyd-22/+34
2017-04-28fmt: use the minimum parts array sizeNathan Froyd-4/+4
2017-04-28fmt: reduce the stack space required by float formattingNathan Froyd-16/+66
2017-02-07Improve fmt floatSon-0/+94
2015-05-06core: made the core formatter to use a new flt2dec.Kang Seonghoon-289/+0
2015-04-21std: Remove deprecated/unstable num functionalityAlex Crichton-14/+29
2015-04-12Make Debug include the - in -0.0Robin Kruppe-91/+29
2015-04-10Fix for #23150Ben Ashford-1/+1
2015-03-30std: Standardize (input, output) param orderingsAlex Crichton-2/+2
2015-03-28Remove IteratorExtSteven Fackler-1/+1
2015-03-26Mass rename uint/int to usize/isizeAlex Crichton-2/+2
2015-03-05Remove integer suffixes where the types in compiled code are identical.Eduard Burtescu-3/+3
2015-03-03Rollup merge of #22876 - Florob:const, r=nikomatsakisManish Goregaokar-1/+1
2015-03-02core: Audit num module for int/uintBrian Anderson-2/+2
2015-03-02Use `const`s instead of `static`s where appropriateFlorian Zeitz-1/+1
2015-02-23int audit - libcore::fmtNick Cameron-11/+11
2015-02-17Auto merge of #22311 - lfairy:consistent-fmt, r=alexcrichtonbors-1/+1
2015-02-15Fix the falloutVadim Petrochenkov-5/+5
2015-02-14Rename `fmt::Writer` to `fmt::Write`Chris Wong-1/+1
2015-02-04remove all kind annotations from closuresJorge Aparicio-2/+2
2015-01-29remove unused importsJorge Aparicio-1/+1
2015-01-29`range(a, b).foo()` -> `(a..b).foo()`Jorge Aparicio-1/+1
2015-01-25Moving away from deprecated i/u suffixes in libcoreAlfie John-3/+3
2015-01-21Fallout from stabilization.Aaron Turon-2/+2
2015-01-12cleanup: `&foo[0..a]` -> `&foo[..a]`Jorge Aparicio-1/+1
2015-01-07use slicing sugarJorge Aparicio-2/+2
2015-01-07Replace full slice notation with index callsNick Cameron-2/+2
2015-01-05Rename `core::char::Char` to `CharExt` to match prelude guidelines.Huon Wilson-1/+1
2015-01-03sed -i -s 's/\bmod,/self,/g' **/*.rsJorge Aparicio-2/+2
2015-01-03core: merge DoubleEndedIteratorExt into IteratorExtJorge Aparicio-1/+1
2015-01-01std: Enforce Unicode in fmt::WriterAlex Crichton-10/+10
2015-01-02Fallout - change array syntax to use `;`Nick Cameron-1/+1
2014-12-31core: unbox closures used in let bindingsJorge Aparicio-2/+2
2014-12-30Register new snapshotsAlex Crichton-9/+0
2014-12-30Fallout from mut slicesNick Cameron-2/+2
2014-12-27Fallout of changing format_args!(f, args) to f(format_args!(args)).Eduard Burtescu-0/+7
2014-12-23Rename and namespace `FPCategory`Tobias Bucher-5/+5
2014-12-21std: Stabilize the std::str moduleAlex Crichton-1/+1
2014-12-14std: Collapse SlicePrelude traitsAlex Crichton-1/+1
2014-12-13libcore: use unboxed closures in `float_to_str_bytes_common`Jorge Aparicio-3/+6
2014-12-05Utilize fewer reexportsCorey Farwell-1/+1
2014-11-26rollup merge of #19288: steveklabnik/doc_style_cleanupAlex Crichton-30/+30
2014-11-25/** -> ///Steve Klabnik-30/+30
2014-11-25Fallout from stabilizationAaron Turon-1/+1
2014-11-21Fix various deprecation warnings from char changesBrian Anderson-1/+2
2014-11-17Switch to purely namespaced enumsSteven Fackler-0/+4
2014-11-17Fix fallout from coercion removalNick Cameron-1/+1
2014-11-14auto merge of #18880 : barosl/rust/doc-fail-to-panic, r=alexcrichtonbors-4/+4