summaryrefslogtreecommitdiff
path: root/src/lib/fmt/print.go
AgeCommit message (Expand)AuthorFilesLines
2009-03-09delete float80 from librariesRob Pike1-3/+1
2009-03-06document fmt.Rob Pike1-11/+51
2009-01-27change dotdotdot interfaces to be structs,Russ Cox1-6/+6
2009-01-20delete exportRuss Cox1-12/+12
2009-01-16casify, cleanup sysRuss Cox1-2/+3
2009-01-16two more casifications in fmtRob Pike1-7/+7
2009-01-15casify fmt and its dependents.Rob Pike1-56/+56
2009-01-15printf->Printf etc.Rob Pike1-12/+12
2009-01-06new new & makeRuss Cox1-2/+2
2008-12-22print array (not just *array) using %vRob Pike1-1/+20
2008-12-19[] and struct in interfaces.Russ Cox1-4/+3
2008-12-19fmt and reflect updates for recent changesRuss Cox1-4/+6
2008-12-18convert *[] to [].Russ Cox1-10/+7
2008-12-16clear flags so that %+v does not pass the +Russ Cox1-1/+2
2008-12-11print field names on struct members.Russ Cox1-17/+40
2008-12-11add uintptr to reflect and printRob Pike1-2/+7
2008-12-11handle the nil interface better in reflect and printRob Pike1-5/+17
2008-12-10assorted cleanup and fixesRuss Cox1-1/+1
2008-12-09fix historical editing glitchRob Pike1-1/+1
2008-12-09use unsafe.pointer in reflection objectsRob Pike1-4/+4
2008-11-24replay CL 19916 and CL 19913 now that the build can handle themRuss Cox1-12/+60
2008-11-24Automated g4 rollback of changelist 19916.Russ Cox1-60/+12
2008-11-24utf8: add InString routines for decoding in stringsRuss Cox1-12/+60
2008-11-17correctly rounded floating-point conversionsRuss Cox1-9/+42
2008-11-14handle nils safelyRob Pike1-22/+26
2008-11-13add a %v format to print an arbitrary value in its "println" form.Rob Pike1-38/+75
2008-11-06- fixes to sprintf (by rob)Robert Griesemer1-8/+11
2008-11-06If a value implements String(), use that in fmt.print (not fmt.printf)Rob Pike1-4/+13
2008-11-06Polymorphic printing.Rob Pike1-29/+89
2008-11-04prepare for recursive printfsRob Pike1-22/+25
2008-11-02printf as we know and love it.Rob Pike1-21/+25
2008-11-01a couple of bugs in print.Rob Pike1-1/+11
2008-10-29update fmt to int/int32 etc splitRob Pike1-3/+9
2008-10-29update Fmt interface: d=int, ud=uint, d32=int32, d64=int64, etc.Russ Cox1-15/+15
2008-10-26fix top-level commentsRob Pike1-0/+5
2008-10-24add printf to fmt.Rob Pike1-0/+387