summaryrefslogtreecommitdiff
path: root/src/pkg/gob/encoder.go
AgeCommit message (Expand)AuthorFilesLines
2011-09-13Imported Upstream version 60upstream/60Ondřej Surý1-0/+243
2011-09-13Imported Upstream version 60Ondřej Surý1-243/+0
2011-08-03Imported Upstream version 59upstream/59Ondřej Surý1-1/+1
2011-04-28Imported Upstream version 2011.04.27upstream/2011.04.27Ondřej Surý1-2/+5
2011-04-26Imported Upstream version 2011.04.13upstream/2011.04.13Ondřej Surý1-18/+17
2011-04-20Imported Upstream version 2011.03.07.1upstream/2011.03.07.1Ondřej Surý1-50/+70
2011-02-14Imported Upstream version 2011-02-01.1upstream/2011-02-01.1Ondřej Surý1-30/+44
2011-01-17Imported Upstream version 2011.01.12upstream/2011.01.12Ondřej Surý1-36/+45
2010-06-28gob: add DecodeValue and EncodeValueRob Pike1-3/+9
2010-06-28gob: allow transmission of things other than structs at the top level.Rob Pike1-7/+15
2010-06-20reflect: add Kind, remove Int8Type, Int8Value, etc.Russ Cox1-1/+1
2010-05-07gob: bug fix: errors encoding the payload were notRob Pike1-2/+6
2010-05-07gob: add an internal commentary example showing how theRob Pike1-176/+0
2010-05-05gob: add support for maps.Rob Pike1-4/+6
2009-12-31trivial bug: []byte is special but [3]byte is not.Rob Pike1-4/+5
2009-12-151) Change default gofmt default settings forRobert Griesemer1-58/+58
2009-12-03error propagation in gob/encoder.Rob Pike1-11/+27
2009-12-01more gob bugsRob Pike1-8/+15
2009-11-16Rework gobs to fix bad bug related to sharing of id's between encoder and dec...Rob Pike1-14/+15
2009-11-09remove semis after statements in one-statement statement listsRobert Griesemer1-7/+7
2009-10-11fix bugs in gob.Rob Pike1-4/+8
2009-10-06apply gofmt to go, gob, hash, http, image, io, json, logRuss Cox1-20/+20
2009-09-15more "declared and not used".Russ Cox1-4/+4
2009-09-09use the new type switch multicase to clean up a little.Rob Pike1-20/+11
2009-08-30can't encode array or slice - catch in sendType rather than failing in EncodeRob Pike1-4/+12
2009-08-12convert gob to whole-package compilation.Russ Cox1-1/+0
2009-07-29handle unsupported types safely.Rob Pike1-2/+7
2009-07-28change the encoding of uints to simplify overflow checking and to make themRob Pike1-5/+5
2009-07-28- clean up code creating keys for type mapsRob Pike1-1/+1
2009-07-27clean up for public use: make some stuff private, add doc comments.Rob Pike1-8/+190
2009-07-16- allow wire type and receive type to differ.Rob Pike1-0/+2
2009-07-15make the low-level encoder and decoder private and have them access byte.Buff...Rob Pike1-10/+43
2009-07-10a better encoder test, with a couple of fixes for bugs it uncovered.Rob Pike1-19/+16
2009-07-09store ids rather than Types in the structs so they can be encoded.Rob Pike1-0/+108