summaryrefslogtreecommitdiff
path: root/src/lib/strconv/decimal.go
AgeCommit message (Collapse)AuthorFilesLines
2009-03-03Automated g4 rollback of changelist 25024,Russ Cox1-30/+30
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 Cox1-30/+30
only non-trivial changes are in convlit1.go golden.out R=gri OCL=25019 CL=25024
2009-01-15convert strconvRuss Cox1-86/+86
R=r DELTA=568 (0 added, 9 deleted, 559 changed) OCL=22898 CL=22901
2009-01-06new new & makeRuss Cox1-2/+2
R=r OCL=22166 CL=22166
2008-12-19change *map to map; *chan to chan; new(T) to new(*T)Russ Cox1-1/+1
fix bugs left over from *[] to [] conversion. TBR=r OCL=21576 CL=21581
2008-12-18convert *[] to [].Russ Cox1-10/+10
R=r OCL=21563 CL=21571
2008-11-19essentially 100% coverage of strconv in tests.Russ Cox1-2/+8
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 Cox1-0/+385
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