summaryrefslogtreecommitdiff
path: root/src/lib/strconv/atof.go
AgeCommit message (Expand)AuthorFilesLines
2009-04-17Step 1 of the Big Error Shift: make os.Error an interface and replace *os.Err...Rob Pike1-3/+3
2009-03-05strconv: docRuss Cox1-13/+19
2009-03-03Automated g4 rollback of changelist 25024,Russ Cox1-6/+6
2009-02-13convert composite literals from { } to ( ).Russ Cox1-6/+6
2009-01-22move math routines from package sys to package math,Russ Cox1-2/+3
2009-01-20delete exportRuss Cox1-3/+3
2009-01-16casify, cleanup sysRuss Cox1-2/+2
2009-01-15convert strconvRuss Cox1-28/+28
2009-01-15make safe for new package local defaultsRuss Cox1-1/+1
2009-01-06new new & makeRuss Cox1-1/+1
2008-12-19change *map to map; *chan to chan; new(T) to new(*T)Russ Cox1-1/+1
2008-12-03Make strconv.atof("-0") return -0Russ Cox1-6/+8
2008-12-01add blank line (response to post-submit review of CL 19422)Russ Cox1-0/+1
2008-11-19essentially 100% coverage of strconv in tests.Russ Cox1-14/+11
2008-11-18return *os.Error instead of bool from strconv.ato*Russ Cox1-24/+33
2008-11-17* faster atof for common casesRuss Cox1-13/+149
2008-11-17correctly rounded floating-point conversionsRuss Cox1-0/+220