summary refs log tree commit diff
path: root/src/libcore/fmt/mod.rs
AgeCommit message (Expand)AuthorLines
2016-08-13Rename empty/bang to neverAndrew Cann-2/+2
2016-08-13Minor fixups based on @eddyb's feedbackAndrew Cann-2/+2
2016-08-13impl Debug + Display for !Andrew Cann-0/+23
2016-07-28Rename `char::escape` to `char::escape_debug` and add tracking issueTobias Bucher-2/+2
2016-07-26Restore `char::escape_default` and add `char::escape` insteadTobias Bucher-2/+2
2016-07-21Auto merge of #34544 - 3Hren:issue/xx/reinterpret-format-precision-for-string...bors-7/+11
2016-07-06feat: reinterpret `precision` field for stringsEvgeny Safronov-7/+11
2016-07-03prefer `if let` to match with `None => {}` arm in some placesZack M. Davis-5/+2
2016-06-23Use `len` instead of `size_hint` where appropiateTobias Bucher-1/+1
2016-05-23Add explanations about what derived trait implementations doCarol (Nichols || Goulding)-1/+5
2016-05-10Doc improvement on std::fmt moduleGuillaume Gomez-0/+26
2016-04-15Implement `Default` for more types in the standard libraryTobias Bucher-1/+1
2016-03-22try! -> ?Jorge Aparicio-26/+26
2016-03-22std: Change `encode_utf{8,16}` to return iteratorsAlex Crichton-14/+13
2016-03-20libcore: add Debug implementations to most missing typesSean McArthur-4/+22
2016-03-12std: Clean out deprecated APIsAlex Crichton-18/+0
2016-03-08std: Fix rustdoc links with std::fmt::AlignmentAlex Crichton-12/+33
2016-03-04End stdlib module summaries with a full stop.Steve Klabnik-1/+1
2016-02-17fmt: Make sure write_fmt's implementation can use write_charUlrik Sverdrup-0/+4
2016-02-11Auto merge of #31479 - kamalmarhubi:fmt-pointer-unsized, r=alexcrichtonbors-5/+5
2016-02-08Implement fmt::Pointer for pointers to unsized typesKamal Marhubi-5/+5
2016-02-08Remove old #[allow(trivial_casts)] annotationsAlex Crichton-6/+0
2016-01-16std: Stabilize APIs for the 1.7 releaseAlex Crichton-2/+8
2016-01-15Rename is_positive argument in fmt::Formatter::pad_integralOliver Middleton-3/+3
2016-01-12Fix the Debug impl of PhantomData requiring Sized on TPierre Krieger-1/+1
2015-12-24Fix link to `Formatter::debug_struct`mitaa-1/+1
2015-12-05std: Stabilize APIs for the 1.6 releaseAlex Crichton-14/+9
2015-11-18Review fixesVadim Petrochenkov-4/+4
2015-11-18Add missing annotations and some testsVadim Petrochenkov-1/+7
2015-11-16Make note about traits that can be derivedSteve Klabnik-0/+2
2015-11-12Fix the manual implementation example for the Debug trait so it matches the g...Erik Davidson-1/+1
2015-10-25std: Stabilize library APIs for 1.5Alex Crichton-15/+8
2015-10-13Correct spelling in docsAndrew Paseltiner-4/+4
2015-10-02Auto merge of #28662 - semmaz:fmt-debug, r=alexcrichtonbors-7/+16
2015-10-01Implement `size_hint` for `EscapeUnicode`Simon Mazur-1/+1
2015-09-30Fix module links from core::fmt::* to go to std::fmtTed Mielczarek-9/+9
2015-09-30Fix module links in std::fmt and the Rust book's documentation chapter.Ted Mielczarek-9/+9
2015-09-30Implement `size_hint` for `EscapeDefault`Simon Mazur-3/+4
2015-09-29Improve speed of `fmt::Debug` for `str` and `char`Simon Mazur-7/+15
2015-09-23Add accessors for Formatter flagsSteven Fackler-7/+29
2015-09-13Add a blanket impl for &mut std::fmt::WriteChris Wong-0/+15
2015-08-15core: Fill out issues for unstable featuresAlex Crichton-10/+20
2015-08-15Reduce libcore/liballoc's dependence on pointer sizesDylan McKay-6/+1
2015-08-09Replace many uses of `mem::transmute` with more specific functionsTobias Bucher-2/+2
2015-08-03syntax: Implement #![no_core]Alex Crichton-1/+1
2015-07-27Fix escaping of characters in Debug for OsStrdiaphore-2/+2
2015-07-10Add trailing , for 1-tuplesSteven Fackler-1/+10
2015-07-08Change tuple Debug impls to use buildersSteven Fackler-13/+3
2015-07-08Make mention of alternate flags in std::fmt traitsSteve Klabnik-0/+43
2015-07-06Significantly improve formatter trait docsSteve Klabnik-11/+300