about summary refs log tree commit diff
path: root/src/libcore/fmt
AgeCommit message (Expand)AuthorLines
2015-03-28Oops fix output examplesSteven Fackler-4/+4
2015-03-28Fold in debug builder doc examplesSteven Fackler-15/+3
2015-03-28Remove IteratorExtSteven Fackler-3/+3
2015-03-28Fold collections debug implsSteven Fackler-16/+1
2015-03-28Update debug helpers and add list builderSteven Fackler-64/+126
2015-03-27rollup merge of #23741: alexcrichton/remove-int-uintAlex Crichton-2/+2
2015-03-27Change the trivial cast lints to allow by defaultNick Cameron-1/+0
2015-03-26Mass rename uint/int to usize/isizeAlex Crichton-2/+2
2015-03-25Change lint names to pluralsNick Cameron-4/+4
2015-03-25Add trivial cast lints.Nick Cameron-0/+7
2015-03-23Add #![feature] attributes to doctestsBrian Anderson-0/+5
2015-03-12Auto merge of #23162 - sfackler:debug-builders, r=alexcrichtonbors-1/+422
2015-03-11Example -> ExamplesSteve Klabnik-1/+1
2015-03-11Switch to a specific featureSteven Fackler-10/+10
2015-03-10Remove inline silliness from debug buildersSteven Fackler-60/+11
2015-03-09Switch derive(Debug) to use the debug buildersSteven Fackler-1/+23
2015-03-09Restructure debug builders to minimize codegenSteven Fackler-18/+58
2015-03-09Implement RFC 640Steven Fackler-1/+409
2015-03-05Remove integer suffixes where the types in compiled code are identical.Eduard Burtescu-6/+6
2015-03-03Rollup merge of #22876 - Florob:const, r=nikomatsakisManish Goregaokar-1/+1
2015-03-03Rollup merge of #22916 - rprichard:fmt-num-cleanup, r=alexcrichtonManish Goregaokar-12/+9
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-28Cleanup in the fmt::num moduleRyan Prichard-12/+9
2015-02-28Fix assuming 32-bit pointersJohn Hodge-1/+1
2015-02-27register snapshot 880fb89Flavio Percoco-19/+0
2015-02-24Rollup merge of #22700 - nick29581:ints_hash, r=alexcrichtonManish Goregaokar-36/+55
2015-02-23int audit - libcore::fmtNick Cameron-36/+55
2015-02-21Kill fmt::Show and fmt::String with fire!Simonas Kazlauskas-32/+0
2015-02-18Introduce the new phantomdata/phantomfn markers and integrate themNiko Matsakis-1/+6
2015-02-17Rollup merge of #22311 - lfairy:consistent-fmt, r=alexcrichtonManish Goregaokar-10/+10
2015-02-17Rollup merge of #22232 - alexcrichton:missing-fmt-stability, r=aturonManish Goregaokar-0/+1
2015-02-15Fix the falloutVadim Petrochenkov-5/+5
2015-02-14Rename `fmt::Writer` to `fmt::Write`Chris Wong-10/+10
2015-02-12std: Add missing stability for core::fmtAlex Crichton-0/+1
2015-02-11rustc: Fix a number of stability lint holesAlex Crichton-0/+2
2015-02-04remove all kind annotations from closuresJorge Aparicio-3/+3
2015-02-02std: Add some missing stability attributesAlex Crichton-0/+2
2015-02-02rollup merge of #21854: alexcrichton/try-borrowAlex Crichton-4/+6
2015-02-02`for x in xs.into_iter()` -> `for x in xs`Jorge Aparicio-1/+1
2015-02-02`for x in xs.iter()` -> `for x in &xs`Jorge Aparicio-1/+1
2015-02-02register snapshotsJorge Aparicio-66/+0
2015-02-01std: Deprecate RefCell::{try_borrow, try_borrow_mut}Alex Crichton-4/+6
2015-01-30std: Stabilize the std::fmt moduleAlex Crichton-193/+239
2015-01-29s/Show/Debug/gJorge Aparicio-1/+1
2015-01-29register snaphotsJorge Aparicio-7/+0
2015-01-29remove unused importsJorge Aparicio-2/+2
2015-01-29`for x in range(a, b)` -> `for x in a..b`Jorge Aparicio-2/+2
2015-01-29`range(a, b).foo()` -> `(a..b).foo()`Jorge Aparicio-1/+1
2015-01-27Merge remote-tracking branch 'rust-lang/master'Brian Anderson-2/+2