aboutsummaryrefslogtreecommitdiff
path: root/src/pkg/encoding/binary/varint.go
AgeCommit message (Collapse)Author
2014-09-08build: move package sources from src/pkg to srcRuss Cox
Preparation was in CL 134570043. This CL contains only the effect of 'hg mv src/pkg/* src'. For more about the move, see golang.org/s/go14nopkg.
2013-03-11all: remove now-unnecessary unreachable panicsBrad Fitzpatrick
Take advantage of the new terminating statement rule. R=golang-dev, r, gri CC=golang-dev https://golang.org/cl/7712044
2012-10-26encoding/binary: ReadVarint reads a signed number, not unsigned numberShenghou Ma
R=golang-dev, iant CC=golang-dev https://golang.org/cl/6762051
2012-07-22encoding/binary: fix typo: ReadVarint returns an int64, not a uint64.Patrick Mylund Nielsen
R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/6432062
2012-01-24encoding/binary: document that PutVarint, PutUvarint may panicBrad Fitzpatrick
Fixes #2628 R=golang-dev, gri CC=golang-dev https://golang.org/cl/5571058
2012-01-20encoding/varint: deleted WriteXvarintRobert Griesemer
Fixes #2748. R=rsc, r, r CC=golang-dev https://golang.org/cl/5557072
2011-11-01src/pkg/[a-m]*: gofix -r error -force=errorRuss Cox
R=golang-dev, iant CC=golang-dev https://golang.org/cl/5322051
2011-09-29encoding/binary: PutX functions require buffer of sufficient size.Robert Griesemer
R=rsc CC=golang-dev https://golang.org/cl/5163041
2011-09-28encoding/binary: support for varint encodingRobert Griesemer
R=rsc, r, nigeltao, r, dsymonds CC=golang-dev https://golang.org/cl/5146048