- 3f915f5 go code: replace closed(c) with x, ok := <-c by Russ Cox · 14 years ago
- e46acb0 reflect: add PtrTo, add Value.Addr (old Addr is now UnsafeAddr) by Russ Cox · 14 years ago
- f2b5a07 delete float, complex - code changes by Russ Cox · 14 years ago
- d96685e reflect: remove unnecessary indirection in TestCopy. by Nigel Tao · 14 years ago
- 8b64cd9 reflect: add Append and AppendSlice functions. by Nigel Tao · 14 years ago
- 73fd298 reflect: rename reflect.ArrayCopy to be reflect.Copy. by Nigel Tao · 14 years ago
- 1ce6245 throughout: fix broken calls to Printf etc. by Rob Pike · 14 years ago
- 3478891 gofmt -s -w src misc by Robert Griesemer · 14 years ago
- 00ffd59 gc: fix reflect table method receiver by Russ Cox · 15 years ago
- 2d5e732 gc: eliminate duplicates in method table by Russ Cox · 15 years ago
- a48b35e reflect: allow PtrValue.PointTo(nil) by Robert Griesemer · 15 years ago
- c6cb303 gc: bug299, bug300 by Russ Cox · 15 years ago
- 45bdf03 reflect: add Kind, remove Int8Type, Int8Value, etc. by Russ Cox · 15 years ago
- 6672b40 remove uses of ... from tree, add one test by Russ Cox · 15 years ago
- 7295b61 reflect: implement Set(nil), SetValue(nil) for PtrValue and MapValue by Russ Cox · 15 years ago
- 1be05bb gofmt: don't print ()'s around function-typed results (not needed anymore) by Robert Griesemer · 15 years ago
- 7abb4b3 gc: fix chan <- chan precedence. also allow func() func(). by Russ Cox · 15 years ago
- 1cecac8 gc: record full package paths in runtime type data by Russ Cox · 15 years ago
- d65a5cc 1) Change default gofmt default settings for by Robert Griesemer · 15 years ago
- 3bb0032 - replaced gofmt expression formatting algorithm with by Robert Griesemer · 15 years ago
- 40621d5 remove semis after statements in one-statement statement lists by Robert Griesemer · 15 years ago
- e02f2b5 delete a pointless todo in all_test.go. address one in rpc/client.go by Rob Pike · 15 years ago
- a05a546 - application of gofmt with one-line composite literal structs enabled by Robert Griesemer · 15 years ago
- 368f8cb - fine-tuning of one-line func heuristic (nodes.go) by Robert Griesemer · 15 years ago
- 7151d23 missing piece gofmt'ed in reflect by Robert Griesemer · 15 years ago
- 77334b98 gofmt-ify reflect - the single line structs can be fixed in another round by Robert Griesemer · 15 years ago
- a8a678f Add SetValue(Value) to the Value interface. by Adam Langley · 15 years ago
- 6f16987 undo 35108 (disallow parens around type in struct literal). by Russ Cox · 16 years ago
- 9c3c140 disallow parens around type in struct literal syntax, per discussion with gri. by Russ Cox · 16 years ago
- ca6a0fe more "declared and not used". by Russ Cox · 16 years ago
- 33be0c6 nil in DeepEqual by Russ Cox · 16 years ago
- de7920e finish ChanValue: Len and Cap. by Russ Cox · 16 years ago
- 653cef1 add Close() and Closed() to ChanValue by Russ Cox · 16 years ago
- 92543da change reflect test to avoid bug132 by Russ Cox · 16 years ago
- 3b864e4 convert low-level (used by testing) packages to by Russ Cox · 16 years ago
- a288095 - FieldByName lookup through anonymous fields by Robert Griesemer · 16 years ago
- f0c00f7 Don't cast nil to a fixed array type. by Ian Lance Taylor · 16 years ago
- 39808db Make struct field names unique. by Ian Lance Taylor · 16 years ago
- a93c5c8 add FieldByName to the interface of reflect.StructType by Rob Pike · 16 years ago
- b75df2f fix some bad testing prints by Rob Pike · 16 years ago
- 92e9257 reflection for interface set by Russ Cox · 16 years ago
- 1880b90 DeepEqual for maps by Rob Pike · 16 years ago
- 12ebbe7 reflection for methods by Russ Cox · 16 years ago
- bba278a reflection for functions by Russ Cox · 16 years ago
- 5ddaf9a reflection for channels by Russ Cox · 16 years ago
- 764b6ec reflection for maps by Russ Cox · 16 years ago
- 64f4e0b update reflect supporting functions, tests to use new reflect interface. by Russ Cox · 16 years ago
- a439f66 add test, fix bug: structs that differ in their by Russ Cox · 16 years ago
- ae11e9e fix build by Russ Cox · 16 years ago
- 4866223 add reflect.Typeof; test for and fix nil interface bug in DeepEqual by Russ Cox · 16 years ago
- d4e57ff Fix a proto encoding crasher whereby a nil in a repeated group field would crash the server. by David Symonds · 16 years ago
- d90e7cb mv src/lib to src/pkg by Rob Pike · 16 years ago[Renamed from src/lib/reflect/all_test.go]
- f966623 related reflect bug: make copies of big values by Russ Cox · 16 years ago
- 96cfd15 direct all interface extraction to InterfaceValue.Get. by Russ Cox · 16 years ago
- 2d5d4a1 reflect bug: NewZeroValue was refusing to create slices. by Russ Cox · 16 years ago
- b66d703 change name of reflect.NewInitValue to the more descriptive NewZeroValue. by Rob Pike · 16 years ago
- a8f6e38 implement IsNil() bool for those types that can be nil. most of them, anyway. by Rob Pike · 16 years ago
- c367d1b Move sys.Reflect and sys.Unreflect into unsafe. by Rob Pike · 16 years ago
- 93831d2 rename variables for clarity. add test for structure alignment/offset. by Rob Pike · 16 years ago
- 64627b0 check for type equality in deepequal by Russ Cox · 16 years ago
- 4b8c13d do not create interfaces containing interfaces by Russ Cox · 16 years ago
- ca9765d Make the reflection library match the reflection string which by Ian Lance Taylor · 16 years ago
- ac6ebfd add method Value() Value to InterfaceValue. by Russ Cox · 16 years ago
- c4ad4f9 Add a DeepEqual function to the reflect package by Daniel Nadasi · 16 years ago
- 5617028 Verify that "byte" is an alias for "uint8". by Ian Lance Taylor · 16 years ago
- 1fe42e2 delete float80 from libraries by Rob Pike · 16 years ago
- 3bc6fd6 document reflect. by Rob Pike · 16 years ago
- be2edb5 Automated g4 rollback of changelist 25024, plus significant hand editing. by Russ Cox · 16 years ago
- 9f8f2e6 convert composite literals from { } to ( ). by Russ Cox · 16 years ago
- 49e2087 insert type assertions when narrowing. by Russ Cox · 16 years ago
- 9a7332f remove the "open" concept from reflect and go with slices and arrays. by Rob Pike · 16 years ago
- c5f99cc change reflect.CopyArray into a method on ArrayValue called CopyFrom by Rob Pike · 16 years ago
- 839a684 delete export by Russ Cox · 16 years ago
- ed2ac9b casify reflect. by Rob Pike · 16 years ago
- 484ba93 update sys.reflect and sys.unreflect to accomodate by Russ Cox · 16 years ago
- 5564504 new new & make by Russ Cox · 16 years ago
- ba882f9 fmt and reflect updates for recent changes by Russ Cox · 16 years ago
- d47d888 convert *[] to []. by Russ Cox · 16 years ago
- 546f269 if the typestring gives a field name of "?", drop it. by Rob Pike · 16 years ago
- d0e30cd assorted cleanup and fixes by Russ Cox · 16 years ago
- 387df5e replay CL 19916 and CL 19913 now that the build can handle them by Russ Cox · 16 years ago
- 85fea81 Automated g4 rollback of changelist 19916. by Russ Cox · 16 years ago
- b65a930 utf8: add InString routines for decoding in strings by Russ Cox · 16 years ago
- c0a01e9 refine gobuild: the files must be *_test.go not *test.go by Rob Pike · 16 years ago[Renamed (96%) from src/lib/reflect/test.go]
- 12254b6 change naming convention for tests from test*.go to *test.go by Rob Pike · 16 years ago
- 079c00a correctly rounded floating-point conversions in new package strconv. by Russ Cox · 16 years ago
- e4f4ab0 more array methods by Russ Cox · 16 years ago
- 419e1e0 add some support for modifying what pointers point to by Rob Pike · 16 years ago
- b1d37b7 reflect.PtrValue.SetSub() to set pointers by Rob Pike · 16 years ago
- 5a1cbe8 trim tags from type strings for structure fields. by Rob Pike · 16 years ago
- 554d0aa make sizes and offsets int, not uint64 by Rob Pike · 16 years ago
- bdbb958 fix bugs parsing functions in reflect library. by Rob Pike · 16 years ago
- a45f947 type strings through the reflection library. by Rob Pike · 16 years ago
- 730fd70 support ... as a special type in the reflection library. by Rob Pike · 16 years ago
- c4969a3 update names after 6g change by Russ Cox · 16 years ago
- 178e37e add creator for missing types, to avoid crashes when by Rob Pike · 16 years ago
- 16fd356 Add support for the basic type "bool". by Ian Lance Taylor · 16 years ago
- 613a5c8 \x00 for NUL in type string. by Rob Pike · 16 years ago
- 12a3435 reflection support for tag strings by Rob Pike · 16 years ago
- 282493b update reflection library to int/int32 etc. split by Rob Pike · 16 years ago