1. 46aa9f5 strconv: optimize Atoi for common case by Aliaksandr Valialkin · 8 years ago
  2. 63c4284 strconv: check bitsize range in ParseInt and ParseUint by Martin Möhrmann · 8 years ago
  3. de7e5d4 strconv: cleanup variable declarations in ParseUint by Martin Möhrmann · 8 years ago
  4. dd6880d strconv: unify error creation in ParseUint with ParseInt by Martin Möhrmann · 8 years ago
  5. fc6b74c strconv: fix ParseUint return value on range overflow by Martin Möhrmann · 8 years ago
  6. 3a67d59 strconv: fix function name in errors for Atoi by Joe Tsai · 9 years ago
  7. b0838ca strconv: clarify doc for Atoi return type by Justyn Temme · 9 years ago
  8. 5fea2cc all: single space after period. by Brad Fitzpatrick · 9 years ago
  9. 351c15f all: remove public named return values when useless by Brad Fitzpatrick · 9 years ago
  10. 06ed8f0 strconv: speed up atoi for common cases by Martin Möhrmann · 10 years ago
  11. c007ce8 build: move package sources from src/pkg to src by Russ Cox · 11 years ago[Renamed from src/pkg/strconv/atoi.go]
  12. 5a333609 strconv: remove needless cast by Rui Ueyama · 11 years ago
  13. c0d4576 strconv: document value returned by ParseInt when there is an error by Rob Pike · 11 years ago
  14. c24e60e strconv: fix doc comment for IntSize by Russ Cox · 12 years ago
  15. bc08124 strconv: corrected several bad references to err.Error in doc comments. by Caleb Spare · 12 years ago
  16. 1300fb5 strconv: use Quote to escape the input string for failed conversion errors by Matt Brown · 12 years ago
  17. db645a0 strconv: consistent parameter names for ParseUint by Volker Dobler · 13 years ago
  18. 02f6719 strconv: include package and function name in error strings Fixes #2548. by Rob Pike · 13 years ago
  19. 2e3bd89 strconv: fix documentation by Robert Griesemer · 13 years ago
  20. efbeaed strconv: new API by Russ Cox · 13 years ago
  21. eb69292 src/pkg/[n-z]*: gofix -r error -force=error by Russ Cox · 13 years ago
  22. c1178aa strconv: use better errors than os.EINVAL, os.ERANGE by Russ Cox · 13 years ago
  23. 90564a9 go/printer: changed max. number of newlines from 3 to 2 by Robert Griesemer · 14 years ago
  24. 712fb6d os.Error API: don't export os.ErrorString, use os.NewError consistently by Robert Griesemer · 14 years ago
  25. 21e75da respect goto restrictions by Russ Cox · 14 years ago
  26. 02469b8 strconv: quote erroneous string in errors Fixes #1253. by Rob Pike · 14 years ago
  27. 2db47c9 Trivial optimization. Cached string indexing in inner loop of Btoui64. by Kyle Consalus · 15 years ago
  28. d65a5cc 1) Change default gofmt default settings for by Robert Griesemer · 15 years ago
  29. 9ac4449 gofmt -r 'α[β:len(α)] -> α[β:]' -w src/cmd src/pkg by Russ Cox · 15 years ago
  30. 3bb0032 - replaced gofmt expression formatting algorithm with by Robert Griesemer · 15 years ago
  31. 40621d5 remove semis after statements in one-statement statement lists by Robert Griesemer · 15 years ago
  32. 368f8cb - fine-tuning of one-line func heuristic (nodes.go) by Robert Griesemer · 15 years ago
  33. fcdba72 correct a design flaw: Atoi etc should not guess the base. by Russ Cox · 15 years ago
  34. 9154943 apply gofmt to rand reflect regexp rpc runtime sort strconv strings sync syscall testing time unicode unsafe utf8 by Russ Cox · 15 years ago
  35. 3b864e4 convert low-level (used by testing) packages to by Russ Cox · 16 years ago
  36. c7a9d98 fix atoi test by Russ Cox · 16 years ago
  37. a0bcaf4 Change os.Error convention: by Russ Cox · 16 years ago
  38. d90e7cb mv src/lib to src/pkg by Rob Pike · 16 years ago[Renamed from src/lib/strconv/atoi.go]
  39. aaf63f8 Step 1 of the Big Error Shift: make os.Error an interface and replace *os.Errors with os.Errors. by Rob Pike · 16 years ago
  40. 5bf0fbe strconv: doc by Russ Cox · 16 years ago
  41. eb3823a allow hex, octal in Atoi, etc. by Russ Cox · 16 years ago
  42. 839a684 delete export by Russ Cox · 16 years ago
  43. 8a7cbad convert strconv by Russ Cox · 16 years ago
  44. 6cc001c return *os.Error instead of bool from strconv.ato* by Russ Cox · 16 years ago
  45. 079c00a correctly rounded floating-point conversions in new package strconv. by Russ Cox · 16 years ago