about summary refs log tree commit diff
path: root/src/libcore/fmt/mod.rs
AgeCommit message (Expand)AuthorLines
2015-04-28Register new snapshotsTamir Duberstein-12/+6
2015-04-21rollup merge of #24636: alexcrichton/remove-deprecatedAlex Crichton-16/+8
2015-04-21std: Remove deprecated/unstable num functionalityAlex Crichton-16/+8
2015-04-21Pick a feature name for write_charSimon Sapin-1/+1
2015-04-21write_char is unlikely to make it for 1.0, it’ll be 1.1Simon Sapin-1/+1
2015-04-21Add a `write_char` method to `std::fmt::Write`Simon Sapin-0/+17
2015-04-14rollup merge of #24379: rkruppe/fmt-negative-zeroAlex Crichton-23/+23
2015-04-12Destabilize format_args! internals.Ryan Prichard-6/+12
2015-04-12Make Debug include the - in -0.0Robin Kruppe-23/+23
2015-04-09fmt: Assume that we'll only ever see 32 or 64 bit pointersRicho Healey-2/+1
2015-04-09fmt: {:p#} formats pointers padded to native widthRicho Healey-1/+25
2015-04-01rollup merge of #23860: nikomatsakis/copy-requires-cloneAlex Crichton-3/+10
2015-04-01Fallout in public-facing and semi-public-facing libsNiko Matsakis-3/+10
2015-04-01Fallout in libstd: remove impls now considered to conflict.Niko Matsakis-6/+0
2015-03-29Auto merge of #23810 - sfackler:debug-collections, r=alexcrichtonbors-37/+40
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-1/+1
2015-03-28Fold collections debug implsSteven Fackler-16/+1
2015-03-28Update debug helpers and add list builderSteven Fackler-11/+41
2015-03-25Change lint names to pluralsNick Cameron-3/+3
2015-03-25Add trivial cast lints.Nick Cameron-0/+6
2015-03-23Add #![feature] attributes to doctestsBrian Anderson-0/+4
2015-03-09Switch derive(Debug) to use the debug buildersSteven Fackler-1/+5
2015-03-09Implement RFC 640Steven Fackler-1/+117
2015-03-05Remove integer suffixes where the types in compiled code are identical.Eduard Burtescu-2/+2
2015-02-28Fix assuming 32-bit pointersJohn Hodge-1/+1
2015-02-27register snapshot 880fb89Flavio Percoco-15/+0
2015-02-24Rollup merge of #22700 - nick29581:ints_hash, r=alexcrichtonManish Goregaokar-23/+38
2015-02-23int audit - libcore::fmtNick Cameron-23/+38
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-9/+9
2015-02-14Rename `fmt::Writer` to `fmt::Write`Chris Wong-9/+9
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-1/+1
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-53/+0
2015-02-01std: Deprecate RefCell::{try_borrow, try_borrow_mut}Alex Crichton-4/+6
2015-01-30std: Stabilize the std::fmt moduleAlex Crichton-107/+145
2015-01-29s/Show/Debug/gJorge Aparicio-1/+1
2015-01-29register snaphotsJorge Aparicio-7/+0
2015-01-29remove unused importsJorge Aparicio-1/+1
2015-01-29`for x in range(a, b)` -> `for x in a..b`Jorge Aparicio-2/+2
2015-01-27Merge remote-tracking branch 'rust-lang/master'Brian Anderson-2/+2
2015-01-27Auto merge of #21586 - pyfisch:patch-1, r=alexcrichtonbors-2/+2