aboutsummaryrefslogtreecommitdiff
path: root/src/lib/strconv/ftoa.go
AgeCommit message (Collapse)Author
2009-06-09mv src/lib to src/pkgRob Pike
tests: all.bash passes, gobuild still works, godoc still works. R=rsc OCL=30096 CL=30102
2009-03-05strconv: docRuss Cox
R=r DELTA=110 (64 added, 19 deleted, 27 changed) OCL=25761 CL=25782
2009-03-03Automated g4 rollback of changelist 25024,Russ Cox
plus significant hand editing. Back to T{x} for composite literals. R=r OCL=25612 CL=25632
2009-02-13convert composite literals from { } to ( ).Russ Cox
only non-trivial changes are in convlit1.go golden.out R=gri OCL=25019 CL=25024
2009-01-22move math routines from package sys to package math,Russ Cox
though they still build in src/runtime. use cgo instead of hand-written wrappers. R=r DELTA=740 (289 added, 300 deleted, 151 changed) OCL=23326 CL=23331
2009-01-20delete exportRuss Cox
TBR=r OCL=23121 CL=23127
2009-01-16casify, cleanup sysRuss Cox
R=r OCL=22978 CL=22984
2009-01-15convert strconvRuss Cox
R=r DELTA=568 (0 added, 9 deleted, 559 changed) OCL=22898 CL=22901
2009-01-15make safe for new package local defaultsRuss Cox
R=r DELTA=462 (9 added, 33 deleted, 420 changed) OCL=22879 CL=22885
2009-01-06new new & makeRuss Cox
R=r OCL=22166 CL=22166
2008-12-18convert *[] to [].Russ Cox
R=r OCL=21563 CL=21571
2008-11-23fix %g 20 -> "2e+01" want "20"Russ Cox
R=r DELTA=11 (10 added, 0 deleted, 1 changed) OCL=19885 CL=19887
2008-11-19essentially 100% coverage of strconv in tests.Russ Cox
fix a few bugs. R=r DELTA=294 (275 added, 9 deleted, 10 changed) OCL=19595 CL=19595
2008-11-17correctly rounded floating-point conversionsRuss Cox
in new package strconv. move atoi etc to strconv too. update fmt, etc to use strconv. R=r DELTA=2232 (1691 added, 424 deleted, 117 changed) OCL=19286 CL=19380