]> Cypherpunks repositories - gostls13.git/commit
correctly rounded floating-point conversions
authorRuss Cox <rsc@golang.org>
Mon, 17 Nov 2008 20:34:03 +0000 (12:34 -0800)
committerRuss Cox <rsc@golang.org>
Mon, 17 Nov 2008 20:34:03 +0000 (12:34 -0800)
commit079c00a475d11f71a69fe848dd67e8fe34ac88a8
treeaeb58cc993873dadfe1a2adbc63521879b2dd66a
parentf333f4685cc667dda0be6ecd5500ff8fa10f4a2a
correctly rounded floating-point conversions
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
24 files changed:
src/lib/fmt/Makefile
src/lib/fmt/format.go
src/lib/fmt/print.go
src/lib/http/server.go
src/lib/make.bash
src/lib/net/net.go
src/lib/reflect/test.go
src/lib/reflect/tostring.go
src/lib/strconv/Makefile [new file with mode: 0644]
src/lib/strconv/atof.go [new file with mode: 0644]
src/lib/strconv/atoi.go [new file with mode: 0644]
src/lib/strconv/decimal.go [new file with mode: 0644]
src/lib/strconv/ftoa.go [new file with mode: 0644]
src/lib/strconv/itoa.go [new file with mode: 0644]
src/lib/strconv/test.bash [new file with mode: 0755]
src/lib/strconv/testatof.go [new file with mode: 0644]
src/lib/strconv/testfp.go [new file with mode: 0644]
src/lib/strconv/testfp.txt [new file with mode: 0644]
src/lib/strconv/testftoa.go [new file with mode: 0644]
src/lib/strings.go
src/run.bash
test/chan/goroutines.go
test/fmt_test.go
test/stringslib.go