summaryrefslogtreecommitdiff
path: root/src/pkg/gob/encode.go
AgeCommit message (Expand)AuthorFilesLines
2011-09-13Imported Upstream version 60upstream/60Ondřej Surý1-0/+717
2011-09-13Imported Upstream version 60Ondřej Surý1-691/+0
2011-08-03Imported Upstream version 59upstream/59Ondřej Surý1-14/+3
2011-04-28Imported Upstream version 2011.04.27upstream/2011.04.27Ondřej Surý1-13/+13
2011-04-26Imported Upstream version 2011.04.13upstream/2011.04.13Ondřej Surý1-59/+89
2011-04-20Imported Upstream version 2011.03.07.1upstream/2011.03.07.1Ondřej Surý1-53/+149
2011-02-14Imported Upstream version 2011-02-01.1upstream/2011-02-01.1Ondřej Surý1-38/+19
2011-01-17Imported Upstream version 2011.01.12upstream/2011.01.12Ondřej Surý1-388/+153
2010-06-29gob: a couple of tiny simplifications using Kind()Rob Pike1-6/+19
2010-06-28gob: add DecodeValue and EncodeValueRob Pike1-7/+6
2010-06-28gob: allow transmission of things other than structs at the top level.Rob Pike1-45/+78
2010-06-24gob: add support for complex numbersRob Pike1-19/+56
2010-06-21reflect: add Type.Bits method, add tags to prohibit conversionsRuss Cox1-3/+7
2010-06-20reflect: add Kind, remove Int8Type, Int8Value, etc.Russ Cox1-19/+19
2010-05-31Fix typo in gob docs. They were introduced in revision 3199778bafNigel Tao1-5/+5
2010-05-07gob: add an internal commentary example showing how theRob Pike1-0/+249
2010-05-05gob: add support for maps.Rob Pike1-5/+50
2010-03-24delete all uses of panicln by rewriting them using panic or,Rob Pike1-1/+1
2010-03-02gofmt: experiment: align values in map composites where possibleRobert Griesemer1-13/+13
2009-12-29fix dumb bug: must write out default values inside arrays and slicesRob Pike1-19/+25
2009-12-151) Change default gofmt default settings forRobert Griesemer1-149/+149
2009-12-01gob: fix buildRuss Cox1-1/+1
2009-11-09 - replaced gofmt expression formatting algorithm withRobert Griesemer1-8/+8
2009-11-09remove semis after statements in one-statement statement listsRobert Griesemer1-18/+18
2009-10-08more lgtm files from gofmtRuss Cox1-3/+3
2009-10-06apply gofmt to go, gob, hash, http, image, io, json, logRuss Cox1-34/+34
2009-09-17unused importsRuss Cox1-1/+0
2009-09-15more "declared and not used".Russ Cox1-1/+1
2009-08-12delete forward type declarationsRuss Cox1-1/+0
2009-08-12convert gob to whole-package compilation.Russ Cox1-3/+0
2009-07-29handle unsupported types safely.Rob Pike1-16/+34
2009-07-28change the encoding of uints to simplify overflow checking and to make themRob Pike1-11/+19
2009-07-28- clean up code creating keys for type mapsRob Pike1-16/+16
2009-07-16clean up the code, flow errors out to decoder.Rob Pike1-2/+2
2009-07-15make the low-level encoder and decoder private and have them access byte.Buff...Rob Pike1-68/+68
2009-07-09store ids rather than Types in the structs so they can be encoded.Rob Pike1-16/+26
2009-07-07bug fix: encOpFor etc. need to indirectRob Pike1-10/+10
2009-07-07gob: use new reflectRuss Cox1-79/+54
2009-07-02indirection on array elements.Rob Pike1-12/+32
2009-07-02arrays, not slices, and only with non-pointer elements.Rob Pike1-42/+62
2009-07-02encode and decode for nested structures.Rob Pike1-28/+53
2009-07-02encoders and decoders for string, []uint8Rob Pike1-4/+40
2009-07-01move dereference code out of the ops and into the interpreter loops.Rob Pike1-103/+29
2009-07-01Encode and decode engines for gobs.Rob Pike1-14/+132
2009-06-30scalar decodersRob Pike1-42/+38
2009-06-30pass the state to the encoders and decoders so error handling can be centrali...Rob Pike1-59/+71
2009-06-30encoders for booleans and numbers.Rob Pike1-0/+245
2009-06-29integer encode/decodeRob Pike1-0/+40