summaryrefslogtreecommitdiff
path: root/src/fmt
Commit message (Expand)AuthorAgeFilesLines
* fmt: add Println exampleRodolfo Rodriguez2018-08-311-0/+11
* fmt: remove spelling mistake in exampleKevin Burke2018-08-301-1/+1
* fmt: add example for FprintlnDylan Waits2018-08-301-0/+12
* fmt: add an example for Errorfianzapolsky2018-08-302-18/+36
* fmt: add an example for SprintfVenil Noronha2018-08-301-0/+11
* fmt: fix incorrect format of whole-number floats when using %#vDave Brophy2018-08-282-15/+34
* fmt: print values for map keys with non-reflexive equalityMartin Möhrmann2018-08-222-12/+7
* strconv: clarify "g" and "G" precision in the docsDaniela Petruzalek2018-08-011-4/+5
* fmt: make %v doc for compound objects consistentAshish Gandhi2018-04-171-1/+1
* fmt: document that Scan etc. accept 'p' format floatsAlberto Donizetti2018-04-171-3/+5
* fmt: document the behaviour of %p on slicesmewmew2018-03-301-0/+2
* fmt: change some unexported method names to camel caseDarshan Parajuli2018-02-272-52/+52
* fmt: hide bad format in test from vetRuss Cox2017-10-311-1/+3
* fmt: clarify wording of * flagRob Pike2017-10-151-1/+2
* fmt: Implement pp.WriteString methodRajath Agasthya2017-09-202-0/+25
* fmt: document verbs %b %d %o %x %X for printing pointersRob Pike2017-08-281-0/+2
* all: remove some double spaces from commentsDaniel Martí2017-08-261-1/+1
* fmt: add Stringer exampleBlain Smith2017-08-161-0/+29
* fmt: add ascii fast path for decoding verbsMartin Möhrmann2017-08-142-2/+13
* fmt: remove stopAtNewline unused parameterDaniel Martí2017-08-111-21/+13
* fmt: remove unnecessary trailing commas in doc.goRob Phoenix2017-06-071-2/+2
* fmt: add short note about %g precisionAlberto Donizetti2017-02-211-1/+1
* fmt: remove unused global variable byteTypeMartin Möhrmann2017-02-191-2/+0
* fmt: support sharp flag for float and complex value printingMartin Möhrmann2017-02-193-1/+85
* fmt: undo clearflags in catchPanic after error message has been printedMartin Möhrmann2016-12-112-11/+24
* fmt: remove unnecessary else statementOdin Ugedal2016-12-071-8/+7
* fmt: fix typoBrad Fitzpatrick2016-11-171-1/+1
* fmt: document that unexported struct fields don't get the String/Error treatmentRuss Cox2016-10-261-0/+3
* fmt: always handle special methods if print operand is a reflect.ValueMartin Möhrmann2016-10-182-1/+12
* fmt: fix documention for %#v on uintsRob Pike2016-10-181-1/+1
* fmt: document and adjust Scanf space handling to eliminate a few paradoxesRuss Cox2016-10-073-78/+104
* fmt: add tests showing current Scanf space handlingRuss Cox2016-10-071-4/+139
* fmt: add tests for parsenumOleg Vakheta2016-10-042-0/+24
* doc: avoid mentioning non-existence of u flag to fmt.Printf.Jim Kingdon2016-09-091-3/+0
* fmt: properly handle early io.EOF Reads in readRune.readByteJoe Tsai2016-07-162-61/+46
* fmt: remove extra space in too few arguments exampleMohit Agarwal2016-05-121-1/+1
* fmt: remove extra space in doc for compound objectsEmmanuel Odeke2016-04-171-1/+1
* fmt: fix padding when precision is set for integer formattingMartin Möhrmann2016-04-172-17/+20
* fmt: optimize struct layout and intbuf sizeMartin Möhrmann2016-04-153-72/+47
* fmt: clarify that for %g precision determines number of significant digitsRob Pike2016-04-141-4/+4
* fmt: hold on to all free buffers, regardless of sizeBrad Fitzpatrick2016-04-031-4/+0
* fmt: fix padding for 0 precision 0 integer value formattingMartin Möhrmann2016-03-302-1/+5
* fmt: improve handling of zero paddingMartin Möhrmann2016-03-301-8/+11
* fmt: unify array and slice formatting for bytes and other typesMartin Möhrmann2016-03-272-72/+60
* fmt: cleanup reflect value handlingMartin Möhrmann2016-03-272-62/+63
* fmt: split doPrint into two specialized functionsMartin Möhrmann2016-03-261-11/+18
* fmt: cleanup and optimize doPrintf for simple formatsMartin Möhrmann2016-03-231-41/+58
* all: delete dead test codeDominik Honnef2016-03-211-6/+0
* fmt: unify integer formattingMartin Möhrmann2016-03-203-135/+97
* fmt: integer formatting should not permanently change paddingMartin Möhrmann2016-03-192-0/+5