aboutsummaryrefslogtreecommitdiff
path: root/src/fmt/print.go
AgeCommit message (Expand)Author
2024-01-23fmt: don't pad strings with zerosRob Pike
2023-09-08fmt: adjust comment after CL 524940Daniel Martí
2023-09-07fmt: avoid reflect.Value.Slice to help escape analysisthepudds
2023-09-07fmt: avoid reflect.Value.Pointer to help escape analysisthepudds
2023-08-17fmt: amend comment for getFieldJes Cok
2023-08-17fmt: fix receiver names are differentch3nnn
2023-05-24fmt: correct documentation for FormatterPaul Jolly
2022-09-29errors, fmt: add support for wrapping multiple errorsDamien Neil
2022-09-21fmt: rely on utf8.AppendRuneJoe Tsai
2022-09-03fmt: recycle printers with large buffersCarlo Alberto Ferraris
2022-08-06fmt: add a function to recover the original format string given a StateRob Pike
2022-05-17fmt: add Append, Appendln, AppendfRob Pike
2022-04-05all: replace `` and '' with “ (U+201C) and ” (U+201D) in doc commentsRuss Cox
2021-12-13all: gofmt -w -r 'interface{} -> any' srcRuss Cox
2021-10-26all: use reflect.{Pointer,PointerTo}Cuong Manh Le
2020-10-13fmt: explain how Formatter interface affects verbs and flagsBryan Boreham
2020-08-17fmt: avoid badverb formatting for %q when used with integersMartin Möhrmann
2019-05-23fmt: always clear wrapErrsMartin Möhrmann
2019-05-15fmt: support %wDamien Neil
2019-05-15errors, fmt: revert rejected changes for Go 1.13Damien Neil
2019-05-09fmt: rename buffer.WriteByte to writeByteRuss Cox
2019-02-27fmt: add frame info to Errorf and support %wMarcel van Lohuizen
2019-02-26fmt: format 0b, 0o prefixes in %#b and %ORuss Cox
2019-02-26fmt: format hex floats and complexesRuss Cox
2018-12-13fmt: include failing method name in panic messageIan Lance Taylor
2018-11-14fmt: avoid allocation when formatting byte slice arguments with verb sMartin Möhrmann
2018-10-18fmt: print maps in key-sorted orderRob Pike
2018-09-19fmt: fix usage of sync.PoolJoe Tsai
2018-08-22fmt: print values for map keys with non-reflexive equalityMartin Möhrmann
2018-02-27fmt: change some unexported method names to camel caseDarshan Parajuli
2017-09-20fmt: Implement pp.WriteString methodRajath Agasthya
2017-08-26all: remove some double spaces from commentsDaniel Martí
2017-08-14fmt: add ascii fast path for decoding verbsMartin Möhrmann
2017-02-19fmt: remove unused global variable byteTypeMartin Möhrmann
2016-12-11fmt: undo clearflags in catchPanic after error message has been printedMartin Möhrmann
2016-12-07fmt: remove unnecessary else statementOdin Ugedal
2016-10-18fmt: always handle special methods if print operand is a reflect.ValueMartin Möhrmann
2016-04-15fmt: optimize struct layout and intbuf sizeMartin Möhrmann
2016-04-03fmt: hold on to all free buffers, regardless of sizeBrad Fitzpatrick
2016-03-27fmt: unify array and slice formatting for bytes and other typesMartin Möhrmann
2016-03-27fmt: cleanup reflect value handlingMartin Möhrmann
2016-03-26fmt: split doPrint into two specialized functionsMartin Möhrmann
2016-03-23fmt: cleanup and optimize doPrintf for simple formatsMartin Möhrmann
2016-03-20fmt: unify integer formattingMartin Möhrmann
2016-03-19fmt: remove depth argument from handleMethods and printArgMartin Möhrmann
2016-03-18fmt: simplify handling of reporting flags to formattersMartin Möhrmann
2016-03-18fmt: remove unused field from printer structMartin Möhrmann
2016-03-17fmt: separate unicode and integer formattingMartin Möhrmann
2016-03-16fmt: reuse buffer and add range checks for %c and %qMartin Möhrmann
2016-03-16fmt: cleanup %p and %T code pathsMartin Möhrmann