summary refs log tree commit diff
path: root/src/libcore/fmt/mod.rs
AgeCommit message (Expand)AuthorLines
2019-10-22Apply clippy::redundant_pattern_matching suggestionMateusz Mikuła-1/+1
2019-10-16fmt::Write is about string slices, not byte slicesRalf Jung-2/+2
2019-10-01Remove unneeded `fn main` blocks from docsLzu Tao-6/+4
2019-09-25Snap cfgs to new betaMark Rousskov-3/+1
2019-09-23Move `--cfg bootstrap` out of `rustc.rs`Alex Crichton-3/+3
2019-08-30Add a "diagnostic item" schemeOliver Scherer-1/+2
2019-08-17Make built-in derives opaque macrosMatthew Jasper-1/+1
2019-08-14Handle cfg(bootstrap) throughoutMark Rousskov-2/+0
2019-08-10Give built-in macros stable addresses in the standard libraryVadim Petrochenkov-0/+15
2019-07-27Remove run-pass test suitesVadim Petrochenkov-1/+1
2019-06-23Fix meta-variable binding errors in macrosJulien Cretin-4/+4
2019-05-19Fix data types indicationVeryTastyTomato-2/+2
2019-04-19libcore: deny more...Mazdak Farrokhzad-63/+63
2019-04-18libcore => 2018Taiki Endo-8/+8
2019-02-13Rollup merge of #58272 - fitzgen:num-format-code-size, r=Mark-SimulacrumMazdak Farrokhzad-39/+62
2019-02-10libs: doc commentsAlexander Regueiro-2/+2
2019-02-08Use write_char for writing padding charactersNick Fitzgerald-22/+8
2019-02-07Un-monomorphize and inline formatting with paddingNick Fitzgerald-29/+57
2019-02-07De-duplicate write_prefix lambda in pad_integralNick Fitzgerald-11/+20
2019-01-28libcore: remove unneeded allow(deprecated)Ralf Jung-1/+1
2019-01-22Rollup merge of #57537 - sinkuu:fmt_perf, r=alexcrichtonMazdak Farrokhzad-4/+6
2019-01-19Rollup merge of #57452 - steveklabnik:improve-formatter-docs, r=frewsxcvMazdak Farrokhzad-3/+12
2019-01-12Utilize specialized zip iterator implShotaro Yamada-4/+6
2019-01-09Improve docs for FormatterSteve Klabnik-3/+12
2019-01-09Misc cleanupsShotaro Yamada-6/+6
2019-01-06Derive Clone for ArgumentV1Shotaro Yamada-9/+1
2019-01-06Remove unnecessary adapterShotaro Yamada-23/+2
2018-12-25Remove licensesMark Rousskov-10/+0
2018-12-13Wording changesEsteban Küber-3/+3
2018-12-12Suggest using `.display()` when trying to print a `Path`Esteban Küber-2/+7
2018-12-04cleanup: remove static lifetimes from constsljedrz-1/+1
2018-10-13doc: make core::fmt::Error example more simpleTshepang Lekhonkhobe-3/+2
2018-09-29Use impl_header_lifetime_elision in libcoreScott McMurray-13/+13
2018-08-24Rollup merge of #53636 - frewsxcv:frewsxcv-nth, r=rkruppekennytm-1/+1
2018-08-23Add missing fmt examplesGuillaume Gomez-0/+66
2018-08-23Prefer `.nth(n)` over `.skip(n).next()`.Corey Farwell-1/+1
2018-07-25Enforce #![deny(bare_trait_objects)] in src/libcoreljedrz-5/+5
2018-06-03Reexport fmt::Alignment into stdGuillaume Gomez-2/+1
2018-05-27Stabilize Formatter alignmentGuillaume Gomez-17/+18
2018-05-24Add more missing examples for FormatterGuillaume Gomez-3/+78
2018-05-05Suggest more helpful formatting stringKornel-5/+6
2018-04-26Add more doc aliasesGuillaume Gomez-0/+2
2018-04-20Revert stabilization of `feature(never_type)`.Felix S. Klock II-2/+2
2018-04-13core: Remove an implicit panic from Formatter::padAlex Crichton-1/+5
2018-04-03tweak fmt::Arguments docsAlex Burka-6/+5
2018-03-22document format_args! - fix trailing whitespaceMazdak Farrokhzad-1/+1
2018-03-21document format_args! behavior wrt. Display and DebugMazdak Farrokhzad-6/+66
2018-03-19Auto merge of #48978 - SimonSapin:debug-hex, r=KodrAusbors-1/+7
2018-03-14Auto merge of #47630 - canndrew:exhaustive-patterns, r=nikomatsakisbors-2/+2
2018-03-15Rollup merge of #48970 - GuillaumeGomez:doc-examples, r=QuietMisdreavuskennytm-2/+134