summaryrefslogtreecommitdiff
path: root/src/pkg/gob/type.go
AgeCommit message (Expand)AuthorFilesLines
2012-04-06Imported Upstream version 1upstream/1Ondřej Surý1-786/+0
2011-09-13Imported Upstream version 60upstream/60Ondřej Surý1-0/+786
2011-09-13Imported Upstream version 60Ondřej Surý1-768/+0
2011-08-03Imported Upstream version 59upstream/59Ondřej Surý1-7/+2
2011-06-30Imported Upstream version 58upstream/58Ondřej Surý1-1/+1
2011-04-28Imported Upstream version 2011.04.27upstream/2011.04.27Ondřej Surý1-38/+22
2011-04-26Imported Upstream version 2011.04.13upstream/2011.04.13Ondřej Surý1-97/+82
2011-04-20Imported Upstream version 2011.03.07.1upstream/2011.03.07.1Ondřej Surý1-86/+351
2011-02-14Imported Upstream version 2011-02-01.1upstream/2011-02-01.1Ondřej Surý1-2/+0
2011-01-17Imported Upstream version 2011.01.12upstream/2011.01.12Ondřej Surý1-80/+185
2010-06-29gob: a couple of tiny simplifications using Kind()Rob Pike1-1/+1
2010-06-24gob: add support for complex numbersRob Pike1-7/+22
2010-06-20reflect: add Kind, remove Int8Type, Int8Value, etc.Russ Cox1-18/+5
2010-05-05gob: add support for maps.Rob Pike1-9/+49
2010-03-30simplify various code using new map index ruleRuss Cox1-2/+2
2010-03-24delete all uses of panicln by rewriting them using panic or,Rob Pike1-5/+5
2010-01-13to improve the chances for compatibility, open a window of unused idsRob Pike1-0/+8
2009-12-30improve some type switches now that multiple types per case are supported.Rob Pike1-25/+3
2009-12-151) Change default gofmt default settings forRobert Griesemer1-111/+111
2009-12-03The String() method requires global state that makes it not work outside of t...Rob Pike1-7/+7
2009-12-01more gob bugsRob Pike1-10/+24
2009-11-16Rework gobs to fix bad bug related to sharing of id's between encoder and dec...Rob Pike1-0/+5
2009-11-09remove semis after statements in one-statement statement listsRobert Griesemer1-39/+39
2009-11-06- fine-tuning of one-line func heuristic (nodes.go)Robert Griesemer1-33/+11
2009-10-06apply gofmt to go, gob, hash, http, image, io, json, logRuss Cox1-64/+64
2009-09-17unused importsRuss Cox1-2/+0
2009-09-15more "declared and not used".Russ Cox1-2/+2
2009-09-02two gob nits found with stricter 6gRuss Cox1-2/+2
2009-08-12convert gob to whole-package compilation.Russ Cox1-29/+17
2009-07-29handle unsupported types safely.Rob Pike1-45/+66
2009-07-28- clean up code creating keys for type mapsRob Pike1-0/+24
2009-07-27clean up for public use: make some stuff private, add doc comments.Rob Pike1-41/+55
2009-07-17change reflect.Type.Name() into two functions: Name() and PkgPath() for ease ...Rob Pike1-4/+3
2009-07-17ignore missing structsRob Pike1-5/+7
2009-07-16- allow wire type and receive type to differ.Rob Pike1-2/+10
2009-07-15make the low-level encoder and decoder private and have them access byte.Buff...Rob Pike1-5/+5
2009-07-13the name of the type was being sent twice. drop the outer instance.Rob Pike1-2/+6
2009-07-11first cut at gob decoder.Rob Pike1-1/+1
2009-07-10a better encoder test, with a couple of fixes for bugs it uncovered.Rob Pike1-0/+3
2009-07-09store ids rather than Types in the structs so they can be encoded.Rob Pike1-57/+132
2009-07-07gob: use new reflectRuss Cox1-30/+63
2009-06-30encoders for booleans and numbers.Rob Pike1-8/+4
2009-06-29add []byte as a special case: it will have a special, efficient encoding.Rob Pike1-1/+7
2009-06-26the first time a structure type appears when printing, identify it by name:Rob Pike1-3/+12
2009-06-25gobs part 1: types.Rob Pike1-0/+231