aboutsummaryrefslogtreecommitdiff
path: root/src/pkg/reflect/value.go
AgeCommit message (Expand)Author
2011-10-18[release-branch.r58] reflect: disallow Interface method on Value obtained via...release.r58.2release-branch.r58Andrew Gerrand
2011-05-30pkg: spelling tweaks, I-ZRobert Hencke
2011-05-03reflect: allow unexported key in Value.MapIndexRuss Cox
2011-04-27reflect: Fix Copy of arraysGustavo Niemeyer
2011-04-25reflect: rename Typeof, NewValue -> TypeOf, ValueOfRuss Cox
2011-04-20reflect: add Type.Implements, Type.AssignableTo, Value.CallSlice; make Set ma...Russ Cox
2011-04-20reflect: update CanAddr, CanSet documentationRuss Cox
2011-04-18reflect: allow Slice of arraysRuss Cox
2011-04-18reflect: more efficient; cannot Set result of NewValue anymoreRuss Cox
2011-04-13reflect: inline method implementationsRuss Cox
2011-04-08reflect: new Type and Value definitionsRuss Cox
2011-03-11go code: replace closed(c) with x, ok := <-cRuss Cox
2011-03-03reflect: add PtrTo, add Value.Addr (old Addr is now UnsafeAddr)Russ Cox
2011-01-19delete float, complex - code changesRuss Cox
2010-12-15reflect: add Append and AppendSlice functions.Nigel Tao
2010-12-13gc: align structs according to max alignment of fieldsRuss Cox
2010-12-12reflect: rename reflect.ArrayCopy to be reflect.Copy.Nigel Tao
2010-11-12 Remove unnecessary casts in Get() methods.Kyle Consalus
2010-10-19reflect: add InterfaceValue.Get to enable setting of an interfaceRob Pike
2010-08-17reflect: allow PtrValue.PointTo(nil)Robert Griesemer
2010-06-21reflect: add Type.Bits method, add tags to prohibit conversionsRuss Cox
2010-06-20reflect: add Kind, remove Int8Type, Int8Value, etc.Russ Cox
2010-04-20reflect: implement Set(nil), SetValue(nil) for PtrValue and MapValueRuss Cox
2010-04-18reflect: add FieldByNameFuncRaif S. Naffah
2010-03-30single argument panicRuss Cox
2010-03-24delete all uses of panicln by rewriting them using panic or,Rob Pike
2010-03-10reflect: typo in commentDean Prichard
2010-03-056g complex type usableKen Thompson
2010-03-02more on type complex.Ken Thompson
2010-03-02gofmt: experiment: align values in map composites where possibleRobert Griesemer
2010-01-29move comment on StringHeader to fix godoc output.Rob Pike
2010-01-28added StringHeader to reflectKen Thompson
2010-01-25runtime, type switch: eliminate package global name space assumptionRuss Cox
2010-01-18reflect: fix garbage collection bug in Call.Russ Cox
2009-12-23fix up %pRob Pike
2009-12-151) Change default gofmt default settings forRobert Griesemer
2009-12-07runtime: introduce unsafe.New and unsafe.NewArrayRuss Cox
2009-11-19reflect fixesRuss Cox
2009-11-09- replaced gofmt expression formatting algorithm withRobert Griesemer
2009-11-09remove semis after statements in one-statement statement listsRobert Griesemer
2009-11-06- application of gofmt with one-line composite literal structs enabledRobert Griesemer
2009-11-06- fine-tuning of one-line func heuristic (nodes.go)Robert Griesemer
2009-11-05gofmt-ify reflectRobert Griesemer
2009-11-01misc cleanupRuss Cox
2009-10-21Add SetValue(Value) to the Value interface.Adam Langley
2009-09-15more "declared and not used".Russ Cox
2009-09-14fix "declared and not used" errors in non-test code.Russ Cox
2009-08-26Restore comment line accidentally dropped in CL 33097.Ian Lance Taylor
2009-08-26finish ChanValue: Len and Cap.Russ Cox
2009-08-26add Close() and Closed() to ChanValueRuss Cox