summaryrefslogtreecommitdiff
path: root/src/fmt/format.go
Commit message (Expand)AuthorAgeFilesLines
* fmt: use “truncateString” not “truncate” in method doczfCode2021-03-131-1/+1
* fmt: do not remove trailing zeros for %g and %G with #(sharp) flagyah012020-02-261-1/+12
* errors, fmt: revert rejected changes for Go 1.13Damien Neil2019-05-151-5/+0
* fmt: rename buffer.WriteByte to writeByteRuss Cox2019-05-091-8/+8
* fmt: add frame info to Errorf and support %wMarcel van Lohuizen2019-02-271-0/+5
* fmt: format 0b, 0o prefixes in %#b and %ORuss Cox2019-02-261-1/+13
* fmt: format hex floats and complexesRuss Cox2019-02-261-4/+11
* fmt: avoid allocation when formatting byte slice arguments with verb sMartin Möhrmann2018-11-141-4/+29
* Revert "fmt: fix incorrect format of whole-number floats when using %#v"Filippo Valsorda2018-10-161-26/+15
* fmt: fix incorrect format of whole-number floats when using %#vDave Brophy2018-08-281-15/+26
* fmt: change some unexported method names to camel caseDarshan Parajuli2018-02-271-24/+24
* fmt: support sharp flag for float and complex value printingMartin Möhrmann2017-02-191-0/+40
* fmt: fix typoBrad Fitzpatrick2016-11-171-1/+1
* fmt: fix padding when precision is set for integer formattingMartin Möhrmann2016-04-171-16/+15
* fmt: optimize struct layout and intbuf sizeMartin Möhrmann2016-04-151-23/+19
* fmt: fix padding for 0 precision 0 integer value formattingMartin Möhrmann2016-03-301-1/+4
* fmt: improve handling of zero paddingMartin Möhrmann2016-03-301-8/+11
* fmt: unify integer formattingMartin Möhrmann2016-03-201-27/+24
* fmt: integer formatting should not permanently change paddingMartin Möhrmann2016-03-191-0/+2
* fmt: separate unicode and integer formattingMartin Möhrmann2016-03-171-33/+59
* fmt: reuse buffer and add range checks for %c and %qMartin Möhrmann2016-03-161-4/+20
* fmt: refactor and unify float and complex formattingMartin Möhrmann2016-03-061-93/+6
* fmt: use fewer allocations for %q string formattingMartin Möhrmann2016-03-051-12/+12
* fmt: float formatting should not permanently change widthMartin Möhrmann2016-03-051-4/+3
* fmt: optimize %x and %X formatting for byte slices and stringsMartin Möhrmann2016-03-031-24/+58
* fmt: optimize string truncationMartin Möhrmann2016-03-021-5/+4
* all: single space after period.Brad Fitzpatrick2016-03-021-1/+1
* fmt: fix formatting of numbers with f.space and f.plus specifiedMartin Möhrmann2016-02-291-2/+3
* fmt: simplify buffer write methods and adjust calls to themMartin Möhrmann2016-02-271-8/+3
* fmt: change padding functions to avoid package initMartin Möhrmann2016-02-271-57/+42
* fmt: fix zero padding for NaNMartin Möhrmann2016-02-211-2/+6
* fmt: remove math package dependency and avoid float operationsMartin Möhrmann2016-02-191-26/+17
* fmt: restore padding for %x on byte slices and stringsRob Pike2015-06-291-1/+1
* fmt: fix buffer underflow for negative integersHåvard Haugen2015-06-021-8/+6
* fmt: allow for space and plus flags when computing widthsRob Pike2015-05-111-1/+6
* fmt: fix panic with large precisionRob Pike2015-05-071-2/+10
* fmt: empty byte slices should print nothing in hexRob Pike2015-04-131-1/+1
* fmt: part 2 of the great flag rebuild: make %+v work in formattersRob Pike2014-10-031-27/+21
* fmt: make the %#v verb a special flagRob Pike2014-10-021-3/+9
* fmt: document and fix the handling of precision for strings and byte slicesRob Pike2014-09-241-0/+6
* fmt: make printing of ints 25-35% fasterRob Pike2014-09-221-4/+30
* build: move package sources from src/pkg to srcRuss Cox2014-09-081-0/+492