summaryrefslogtreecommitdiff
path: root/src/pkg/gob/encode.go
AgeCommit message (Expand)AuthorFilesLines
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