aboutsummaryrefslogtreecommitdiff
path: root/src/lib/strconv
AgeCommit message (Expand)Author
2009-06-09mv src/lib to src/pkgRob Pike
2009-06-06delete unnecessary newlineRuss Cox
2009-06-05rebuilt Makefiles for CL 29923Russ Cox
2009-06-04use the new bytes packageRob Pike
2009-05-11change utf8.FullRuneInString and utf8.DecodeRuneInStringRuss Cox
2009-05-08embeddability: change bufio.BufRead to bufio.Reader etc.Rob Pike
2009-04-17Step 1 of the Big Error Shift: make os.Error an interface and replace *os.Err...Rob Pike
2009-04-16Convert go tree to hierarchical pkg directory:Russ Cox
2009-04-16regenerate Makefiles.Russ Cox
2009-04-13add strconv.UnquoteRuss Cox
2009-03-11Rename os.FD to os.File.Russ Cox
2009-03-07document bufioRob Pike
2009-03-05strconv: docRuss Cox
2009-03-03Automated g4 rollback of changelist 25024,Russ Cox
2009-03-02- itobRobert Griesemer
2009-02-16allow hex, octal in Atoi, etc.Russ Cox
2009-02-13convert composite literals from { } to ( ).Russ Cox
2009-02-03bufio:Russ Cox
2009-01-22move math routines from package sys to package math,Russ Cox
2009-01-20delete exportRuss Cox
2009-01-16casify, cleanup sysRuss Cox
2009-01-16s/split/Split/ to get compiling againRob Pike
2009-01-15convert strconvRuss Cox
2009-01-15make safe for new package local defaultsRuss Cox
2009-01-15printf->Printf etc.Rob Pike
2009-01-06new new & makeRuss Cox
2008-12-19change *map to map; *chan to chan; new(T) to new(*T)Russ Cox
2008-12-18convert *[] to [].Russ Cox
2008-12-10assorted cleanup and fixesRuss Cox
2008-12-03Make strconv.atof("-0") return -0Russ Cox
2008-12-01be more precise in ftoa_test.Russ Cox
2008-12-01add blank line (response to post-submit review of CL 19422)Russ Cox
2008-11-24replay CL 19916 and CL 19913 now that the build can handle themRuss Cox
2008-11-24Automated g4 rollback of changelist 19916.Russ Cox
2008-11-24utf8: add InString routines for decoding in stringsRuss Cox
2008-11-23fix %g 20 -> "2e+01" want "20"Russ Cox
2008-11-19refine gobuild: the files must be *_test.go not *test.goRob Pike
2008-11-19change naming convention for tests fromRob Pike
2008-11-19a few Errorfs should have been ErrorRob Pike
2008-11-19add a type testing.T and use it in tests.Rob Pike
2008-11-19gobuild: add coverage rule, ignore files in package main.Russ Cox
2008-11-19essentially 100% coverage of strconv in tests.Russ Cox
2008-11-19leave 6.out around after gotest;Russ Cox
2008-11-18more tests for strconv; convert to gotest.Russ Cox
2008-11-18return *os.Error instead of bool from strconv.ato*Russ Cox
2008-11-18gobuild changes.Russ Cox
2008-11-18roll tests into one binaryRuss Cox
2008-11-17* faster atof for common casesRuss Cox
2008-11-17correctly rounded floating-point conversionsRuss Cox