1. 6e0767b reflect fixes by Russ Cox · 15 years ago
  2. 3bb0032 - replaced gofmt expression formatting algorithm with by Robert Griesemer · 15 years ago
  3. 40621d5 remove semis after statements in one-statement statement lists by Robert Griesemer · 15 years ago
  4. a05a546 - application of gofmt with one-line composite literal structs enabled by Robert Griesemer · 15 years ago
  5. 368f8cb - fine-tuning of one-line func heuristic (nodes.go) by Robert Griesemer · 15 years ago
  6. 77334b98 gofmt-ify reflect - the single line structs can be fixed in another round by Robert Griesemer · 15 years ago
  7. 7732d80 misc cleanup by Russ Cox · 15 years ago
  8. a8a678f Add SetValue(Value) to the Value interface. by Adam Langley · 15 years ago
  9. ca6a0fe more "declared and not used". by Russ Cox · 16 years ago
  10. 28eba48 fix "declared and not used" errors in non-test code. by Russ Cox · 16 years ago
  11. 8ce468e Restore comment line accidentally dropped in CL 33097. by Ian Lance Taylor · 16 years ago
  12. de7920e finish ChanValue: Len and Cap. by Russ Cox · 16 years ago
  13. 653cef1 add Close() and Closed() to ChanValue by Russ Cox · 16 years ago
  14. 3b864e4 convert low-level (used by testing) packages to by Russ Cox · 16 years ago
  15. 0496040 remove unnecessary pkg. references by Russ Cox · 16 years ago
  16. a288095 - FieldByName lookup through anonymous fields by Robert Griesemer · 16 years ago
  17. cb9c973 don't crash printing a nil map by Rob Pike · 16 years ago
  18. ca01716 fix build - broke with uint32 -> int change in reflect SliceHeader by Russ Cox · 16 years ago
  19. 22ea3f9 fix SliceHeader: len and cap are int, not uint32 by Russ Cox · 16 years ago
  20. 92e9257 reflection for interface set by Russ Cox · 16 years ago
  21. 12ebbe7 reflection for methods by Russ Cox · 16 years ago
  22. bba278a reflection for functions by Russ Cox · 16 years ago
  23. 5ddaf9a reflection for channels by Russ Cox · 16 years ago
  24. 764b6ec reflection for maps by Russ Cox · 16 years ago
  25. ce2e450 install new reflect: rename ntype.go and nvalue.go to type.go and value.go by Russ Cox · 16 years ago
  26. 29e6eb2 make a description of the slice header public by Rob Pike · 16 years ago
  27. a439f66 add test, fix bug: structs that differ in their by Russ Cox · 16 years ago
  28. 4866223 add reflect.Typeof; test for and fix nil interface bug in DeepEqual by Russ Cox · 16 years ago
  29. d4e57ff Fix a proto encoding crasher whereby a nil in a repeated group field would crash the server. by David Symonds · 16 years ago
  30. d90e7cb mv src/lib to src/pkg by Rob Pike · 16 years ago[Renamed from src/lib/reflect/value.go]
  31. a52fb81 386-related fixes and guards by Russ Cox · 16 years ago
  32. f966623 related reflect bug: make copies of big values by Russ Cox · 16 years ago
  33. 96cfd15 direct all interface extraction to InterfaceValue.Get. by Russ Cox · 16 years ago
  34. 2d5d4a1 reflect bug: NewZeroValue was refusing to create slices. by Russ Cox · 16 years ago
  35. b66d703 change name of reflect.NewInitValue to the more descriptive NewZeroValue. by Rob Pike · 16 years ago
  36. 28516d4 update reflect for upcoming interface representation change. by Russ Cox · 16 years ago
  37. a8f6e38 implement IsNil() bool for those types that can be nil. most of them, anyway. by Rob Pike · 16 years ago
  38. c367d1b Move sys.Reflect and sys.Unreflect into unsafe. by Rob Pike · 16 years ago
  39. 4b8c13d do not create interfaces containing interfaces by Russ Cox · 16 years ago
  40. ca9765d Make the reflection library match the reflection string which by Ian Lance Taylor · 16 years ago
  41. 3a7df4d add support for variable formatters by Rob Pike · 16 years ago
  42. ac6ebfd add method Value() Value to InterfaceValue. by Russ Cox · 16 years ago
  43. 1fe42e2 delete float80 from libraries by Rob Pike · 16 years ago
  44. 3bc6fd6 document reflect. by Rob Pike · 16 years ago
  45. be2edb5 Automated g4 rollback of changelist 25024, plus significant hand editing. by Russ Cox · 16 years ago
  46. dfad8ea use embedded interface types by Russ Cox · 16 years ago
  47. 9f8f2e6 convert composite literals from { } to ( ). by Russ Cox · 16 years ago
  48. 49e2087 insert type assertions when narrowing. by Russ Cox · 16 years ago
  49. 4cf7711 update go code tree to new func rules. by Russ Cox · 16 years ago
  50. 9a7332f remove the "open" concept from reflect and go with slices and arrays. by Rob Pike · 16 years ago
  51. 1b3299e change the representation of arrays in protobufs from *[]item to []item. by Rob Pike · 16 years ago
  52. c5f99cc change reflect.CopyArray into a method on ArrayValue called CopyFrom by Rob Pike · 16 years ago
  53. 839a684 delete export by Russ Cox · 16 years ago
  54. 3609624 casify, cleanup sys by Russ Cox · 16 years ago
  55. ed2ac9b casify reflect. by Rob Pike · 16 years ago
  56. b54133d make safe for new package local defaults by Russ Cox · 16 years ago
  57. 484ba93 update sys.reflect and sys.unreflect to accomodate by Russ Cox · 16 years ago
  58. 5564504 new new & make by Russ Cox · 16 years ago
  59. ba882f9 fmt and reflect updates for recent changes by Russ Cox · 16 years ago
  60. d47d888 convert *[] to []. by Russ Cox · 16 years ago
  61. 9ba97ca add uintptr to reflect and print by Rob Pike · 16 years ago
  62. ac09eb4 handle the nil interface better in reflect and print by Rob Pike · 16 years ago
  63. d0e30cd assorted cleanup and fixes by Russ Cox · 16 years ago
  64. 50d0695 use unsafe.pointer in reflection objects by Rob Pike · 16 years ago
  65. 387df5e replay CL 19916 and CL 19913 now that the build can handle them by Russ Cox · 16 years ago
  66. 85fea81 Automated g4 rollback of changelist 19916. by Russ Cox · 16 years ago
  67. b65a930 utf8: add InString routines for decoding in strings by Russ Cox · 16 years ago
  68. e4f4ab0 more array methods by Russ Cox · 16 years ago
  69. 419e1e0 add some support for modifying what pointers point to by Rob Pike · 16 years ago
  70. b1d37b7 reflect.PtrValue.SetSub() to set pointers by Rob Pike · 16 years ago
  71. 842e1a9 Add a cache to avoid unnecessary parsing of type strings when constructing values by Rob Pike · 16 years ago
  72. 554d0aa make sizes and offsets int, not uint64 by Rob Pike · 16 years ago
  73. a45f947 type strings through the reflection library. by Rob Pike · 16 years ago
  74. bcd6403 remove unnecessary 6g workaround by Russ Cox · 16 years ago
  75. 178e37e add creator for missing types, to avoid crashes when by Rob Pike · 16 years ago
  76. 16fd356 Add support for the basic type "bool". by Ian Lance Taylor · 16 years ago
  77. 12a3435 reflection support for tag strings by Rob Pike · 16 years ago
  78. 282493b update reflection library to int/int32 etc. split by Rob Pike · 16 years ago
  79. c4af3e7 use embedded types to save boilerplate - almost 300 lines' worth by Rob Pike · 16 years ago
  80. 418b97c add printf to fmt. by Rob Pike · 16 years ago
  81. 8327b54 make reflect compile again by Rob Pike · 16 years ago
  82. de13727 use &T{1,2,3} constructor for simple new cases by Russ Cox · 16 years ago
  83. 5d30161 move reflection code into final place. by Rob Pike · 16 years ago[Renamed from usr/r/reflect/value.go]
  84. 34b8873 Reflection values. by Rob Pike · 16 years ago
  85. fac3dfe More reflection code. by Rob Pike · 16 years ago