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