1. b3946dc runtime/bytes: fast Compare for byte arrays and strings. by Keith Randall · 12 years ago
  2. e42584e bytes: don't leave mprotect-ed pages after unsafe test. by Rémy Oudompheng · 12 years ago
  3. 3d5daa2 runtime: Implement faster equals for strings and bytes. by Keith Randall · 12 years ago
  4. 461e7b7 bytes: Benchmark Buffer's compactions by Robert Obryk · 12 years ago
  5. 0359af4 bytes: document that Buffer.Write grows the buffer by Rob Pike · 12 years ago
  6. 43e38d5 bytes: don't compact Buffer so aggressively by Brad Fitzpatrick · 12 years ago
  7. 994f596 bytes: don't grow Buffer if capacity is available by Brad Fitzpatrick · 12 years ago
  8. 07720b6 build: update assembly variable names for vet by Russ Cox · 12 years ago
  9. 1b6b1bc bytes,strings: remove user name from BUG in comment by Rob Pike · 12 years ago
  10. 464257ee bytes,string: move the BUG to the comment of the function it's about by Rob Pike · 12 years ago
  11. 691e5e3 bytes: annotate assembly functions with //go:noescape by Shenghou Ma · 12 years ago
  12. 30a9957 bytes: minor optimization to lastIndexFunc by Brad Fitzpatrick · 12 years ago
  13. e515d80 bytes, strings: add TrimPrefix and TrimSuffix by Brad Fitzpatrick · 12 years ago
  14. 53e342f bytes: fix UnreadByte failure after ReadBytes by Stéphane Travostino · 12 years ago
  15. 2e24a73 bytes: Fix missing godoc punctuation. by Matthew Dempsky · 12 years ago
  16. 8cf4590 bytes: Change Compare example to be consistent with sort.Search's. by Matthew Dempsky · 12 years ago
  17. c753404 bytes: fix docs: s/array/slice/. by Nigel Tao · 12 years ago
  18. 5696127 bytes: Examples recommending bytes.Compare(a, b) rel_op 0 to test a rel_op b. by Matthew Dempsky · 12 years ago
  19. b1c4a8e bytes: avoid duplicate malloc/copy in Buffer.ReadString by Rémy Oudompheng · 12 years ago
  20. c8fa7dc bytes, strings: fix Reader WriteTo return value on 0 bytes copied by Brad Fitzpatrick · 12 years ago
  21. 465b9c3 gofmt: apply gofmt -w src misc by Robert Griesemer · 12 years ago
  22. eae25d4 bytes, strings: add (*Reader).WriteTo by Evan Shaw · 12 years ago
  23. 749a445 bytes: fix tests and fix build by Andrew Gerrand · 12 years ago
  24. e7c222c bytes: make examples work in playground by Andrew Gerrand · 12 years ago
  25. 10ea651 build: make int 64 bits on amd64 by Russ Cox · 13 years ago
  26. 8572950 all: match asm variable names to Go func declarations by Russ Cox · 13 years ago
  27. 0e60019 bytes, strings: add Fields benchmarks by Russ Cox · 13 years ago
  28. c0efcac bytes: make Join return a new buffer on len(a) == 1 by Gustavo Niemeyer · 13 years ago
  29. 1255a63 bytes.Buffer: export the Grow method by Rob Pike · 13 years ago
  30. 9c97544 bytes: fixed typo. by Marcel van Lohuizen · 13 years ago
  31. d472d3f bytes: add assembly version of Equal for ARM by Dave Cheney · 13 years ago
  32. 0681b13 bytes: add assembly version of IndexByte for ARM by Dave Cheney · 13 years ago
  33. 85f2d18 bytes: document Compare/Equal semantics for nil arguments, and add tests. by David Symonds · 13 years ago
  34. 11e113d godoc: make example code more readable with new comment convention by Andrew Gerrand · 13 years ago
  35. 7127b6f bytes,strings: make *Reader implement io.ReaderAt by Brad Fitzpatrick · 13 years ago
  36. 977e8d1 bytes: add Reader by Brad Fitzpatrick · 13 years ago
  37. c59dc48 bytes.Buffer: return error in WriteTo if buffer is not drained by Rob Pike · 13 years ago
  38. 0a75a79 bytes: API tweaks by Rob Pike · 13 years ago
  39. 2050a9e build: remove Make.pkg, Make.tool by Russ Cox · 13 years ago
  40. 87079cc bytes: delete the test for huge buffers by Rob Pike · 13 years ago
  41. e17afa4 bytes.Buffer: remove dead code, complete documentation by Robert Griesemer · 13 years ago
  42. b0d2713 bytes.Buffer: restore panic on out-of-memory by Rob Pike · 13 years ago
  43. 35ba05e bytes: simplified logic by Robert Griesemer · 13 years ago
  44. 696bf79 bytes.Buffer: turn buffer size overflows into errors Fixes #2743. by Rob Pike · 13 years ago
  45. dcc5fe1 pkg/bytes: add the usual copyright notice to example_test.go by Olivier Duperray · 13 years ago
  46. 87ceb0c bytes: make Write and WriteString code look the same by Brad Fitzpatrick · 13 years ago
  47. 6a88f1c bytes.Buffer: read of 0 bytes at EOF shouldn't be an EOF by Rob Pike · 13 years ago
  48. 6b77246 panics: use the new facilities of testing.B instead by Rob Pike · 13 years ago
  49. 9834a25 testing: trim spaces before comparing example output by Andrew Gerrand · 13 years ago
  50. 9f65e99 go/printer, gofmt: don't write too many newlines by Robert Griesemer · 13 years ago
  51. a250f37 update tree for new default type rule by Russ Cox · 13 years ago
  52. 1278c6c bytes: lost edit from earlier CL by Russ Cox · 13 years ago
  53. 9b875bc bytes: faster Count, Index, Equal by Russ Cox · 13 years ago
  54. 7600281 bytes: fix test output by Christopher Wedgwood · 13 years ago
  55. 558e7fc various: avoid func compare by Russ Cox · 13 years ago
  56. 30aa701 renaming_2: gofix -r go1pkgrename src/pkg/[a-l]* by Rob Pike · 13 years ago
  57. ed92549 bytes: fix typo and resolve to be less idiotic next time by Andrew Gerrand · 13 years ago
  58. 1a4402a bytes: add Contains function by Andrew Gerrand · 13 years ago
  59. eb1717e all: rename os.EOF to io.EOF in various non-code contexts by Vincent Vanackere · 13 years ago
  60. c2049d2 src/pkg/[a-m]*: gofix -r error -force=error by Russ Cox · 13 years ago
  61. 8f57181 bytes, strings: use rune by Russ Cox · 13 years ago
  62. 707e5ac updates: append(y,[]byte(z)...) -> append(y,z...)" by Christopher Wedgwood · 13 years ago
  63. c68ae9d bytes: add EqualFold by Russ Cox · 14 years ago
  64. d16ceca bytes: fix Replace so it actually copies by Gustavo Niemeyer · 14 years ago
  65. a45c657 bytes.Buffer: clarify that NewBuffer is not for beginners by Rob Pike · 14 years ago
  66. 90564a9 go/printer: changed max. number of newlines from 3 to 2 by Robert Griesemer · 14 years ago
  67. ebb1566 strings.Split: make the default to split all. by Rob Pike · 14 years ago
  68. 712fb6d os.Error API: don't export os.ErrorString, use os.NewError consistently by Robert Griesemer · 14 years ago
  69. 6a186d3 src/pkg: make package doc comments consistently start with "Package foo". by Nigel Tao · 14 years ago
  70. 47f4ae1 bytes, strings: simplify Join by Evan Shaw · 14 years ago
  71. f0cf7d2 testing: shorten some tests. by Rob Pike · 14 years ago
  72. bbfad5f bytes: fix bugs in buffer.ReadBytes by Evan Shaw · 14 years ago
  73. 4438f50 buffer.go: minor optimization, expanded comment by Robert Griesemer · 14 years ago
  74. c9bf30c bytes: Add Buffer.ReadBytes, Buffer.ReadString by Evan Shaw · 14 years ago
  75. 7b4495c bytes.Buffer: fix typo in comment (doubled 'to') by Rob Pike · 14 years ago
  76. 2b0a276 bytes: fix TrimSpace typo by Peter Mundy · 14 years ago
  77. 353fd10 bytes.Buffer: Fix bug in UnreadByte. Error check was inverted. by Rob Pike · 14 years ago
  78. 1ce6245 throughout: fix broken calls to Printf etc. by Rob Pike · 14 years ago
  79. 42cfe48f use the new %U format for runes by Rob Pike · 14 years ago
  80. 415545e bytes: add Buffer.UnreadRune, Buffer.UnreadByte by Roger Peppe · 14 years ago
  81. 009aebd Removed bytes.Add and bytes.AddByte; we now have 'append'. by Kyle Consalus · 14 years ago
  82. 3cb4bdb utf8: make EncodeRune's destination the first argument. by Adam Langley · 14 years ago
  83. 8530e8e strings: add LastIndexAny by Benny Siegert · 14 years ago
  84. 49fdfe2 bytes: SSE for bytes.IndexByte on amd64 by Evan Shaw · 14 years ago
  85. 69c4e93 use append by Russ Cox · 14 years ago
  86. d86ab01 use copy by Russ Cox · 14 years ago
  87. 3478891 gofmt -s -w src misc by Robert Griesemer · 14 years ago
  88. b15b0a0 bytes: fix typo in AddByte comment by Andrew Gerrand · 15 years ago
  89. 81ba399 bytes, strings: change lastIndexFunc to use DecodeLastRune by Roger Peppe · 15 years ago
  90. 1959c3a tests: fix prints by Rob Pike · 15 years ago
  91. da392d9 build: no required environment variables by Russ Cox · 15 years ago
  92. 75f6a0c bytes: add IndexRune, FieldsFunc and To*Special by Christian Himpel · 15 years ago
  93. 99aab8b bytes: added test case for explode with blank string. by Scott Lawrence · 15 years ago
  94. 8b82169 bytes, strings: mention the n < 0 case in Split/SplitAfter doc comment by Andrew Gerrand · 15 years ago
  95. e356f1d bytes: port IndexFunc and LastIndexFunc from strings package by Fazlul Shahriar · 15 years ago
  96. 8629e5a strings.Bytes: fix typo in comment by Andrey Mirtchovski · 15 years ago
  97. de228c0 bytes: add Title by Rob Pike · 15 years ago
  98. 38f1231 strings and bytes.Split: make count of 0 mean 0, not infinite. by Rob Pike · 15 years ago
  99. 0bf413a bytes, strings: add Replace by Russ Cox · 15 years ago
  100. 44ca04d big, bytes: move assembly externs to separate file by Russ Cox · 15 years ago