1. 02dd98e Revert "bytes: document that Buffer values must not be copied" by Alan Donovan · 10 years ago
  2. b1177d3 bytes: document that Buffer values must not be copied by Alan Donovan · 10 years ago
  3. 5242d2c bytes: fix comment by Josh Bleecher Snyder · 10 years ago
  4. 90554be bytes: export Cap method for buffer by Cristian Staretu · 10 years ago
  5. c007ce8 build: move package sources from src/pkg to src by Russ Cox · 11 years ago[Renamed from src/pkg/bytes/buffer.go]
  6. 0359af4 bytes: document that Buffer.Write grows the buffer by Rob Pike · 12 years ago
  7. 43e38d5 bytes: don't compact Buffer so aggressively by Brad Fitzpatrick · 12 years ago
  8. 994f596 bytes: don't grow Buffer if capacity is available by Brad Fitzpatrick · 12 years ago
  9. 53e342f bytes: fix UnreadByte failure after ReadBytes by Stéphane Travostino · 12 years ago
  10. b1c4a8e bytes: avoid duplicate malloc/copy in Buffer.ReadString by Rémy Oudompheng · 12 years ago
  11. 1255a63 bytes.Buffer: export the Grow method by Rob Pike · 13 years ago
  12. c59dc48 bytes.Buffer: return error in WriteTo if buffer is not drained by Rob Pike · 13 years ago
  13. 0a75a79 bytes: API tweaks by Rob Pike · 13 years ago
  14. e17afa4 bytes.Buffer: remove dead code, complete documentation by Robert Griesemer · 13 years ago
  15. b0d2713 bytes.Buffer: restore panic on out-of-memory by Rob Pike · 13 years ago
  16. 35ba05e bytes: simplified logic by Robert Griesemer · 13 years ago
  17. 696bf79 bytes.Buffer: turn buffer size overflows into errors Fixes #2743. by Rob Pike · 13 years ago
  18. 87ceb0c bytes: make Write and WriteString code look the same by Brad Fitzpatrick · 13 years ago
  19. 6a88f1c bytes.Buffer: read of 0 bytes at EOF shouldn't be an EOF by Rob Pike · 13 years ago
  20. 30aa701 renaming_2: gofix -r go1pkgrename src/pkg/[a-l]* by Rob Pike · 13 years ago
  21. eb1717e all: rename os.EOF to io.EOF in various non-code contexts by Vincent Vanackere · 13 years ago
  22. c2049d2 src/pkg/[a-m]*: gofix -r error -force=error by Russ Cox · 13 years ago
  23. 8f57181 bytes, strings: use rune by Russ Cox · 13 years ago
  24. a45c657 bytes.Buffer: clarify that NewBuffer is not for beginners by Rob Pike · 14 years ago
  25. 712fb6d os.Error API: don't export os.ErrorString, use os.NewError consistently by Robert Griesemer · 14 years ago
  26. bbfad5f bytes: fix bugs in buffer.ReadBytes by Evan Shaw · 14 years ago
  27. 4438f50 buffer.go: minor optimization, expanded comment by Robert Griesemer · 14 years ago
  28. c9bf30c bytes: Add Buffer.ReadBytes, Buffer.ReadString by Evan Shaw · 14 years ago
  29. 7b4495c bytes.Buffer: fix typo in comment (doubled 'to') by Rob Pike · 14 years ago
  30. 353fd10 bytes.Buffer: Fix bug in UnreadByte. Error check was inverted. by Rob Pike · 14 years ago
  31. 415545e bytes: add Buffer.UnreadRune, Buffer.UnreadByte by Roger Peppe · 14 years ago
  32. 3cb4bdb utf8: make EncodeRune's destination the first argument. by Adam Langley · 14 years ago
  33. d86ab01 use copy by Russ Cox · 14 years ago
  34. 9baa7a5 bytes.Buffer.ReadFrom: fix bug. Fixes #852. by Rob Pike · 15 years ago
  35. bb84f4b changes &x -> x[0:] for array to slice conversion by Russ Cox · 15 years ago
  36. 78551a9 bytes: add Next method to Buffer, simplify Read. by Russ Cox · 15 years ago
  37. 1baf35e bytes: shuffle implementation, making WriteByte 50% faster by Russ Cox · 15 years ago
  38. 0ac5ef7 Add ReadRune and WriteRune to bytes.Buffer by Rob Pike · 15 years ago
  39. ca0def6 Remove redundant size check in resize. Let callers worry about that and resize should just do "resize". by Yongjian Xu · 15 years ago
  40. 1f0e6a4 new comments for bytes.NewBuffer and NewBufferString. by Rob Pike · 15 years ago
  41. 5a1d332 1) Change default gofmt default settings for by Robert Griesemer · 15 years ago
  42. d14c813 When the buffer is empty, reset b.off to the beginning of the buffer by Rob Pike · 15 years ago
  43. 8c22dd2 Remove copyBytes completely in favor of copy. by Christopher Wedgwood · 15 years ago
  44. 4c0e51c Make printing faster by avoiding mallocs and some other advances. by Rob Pike · 15 years ago
  45. 4ed5717 avoid an allocation inside bytes.Buffer by providing a static array. by Rob Pike · 15 years ago
  46. bc3e347 Add ReadFrom and WriteTo methods to bytes.Buffer, to enable i/o without buffer allocation. by Rob Pike · 15 years ago
  47. 9ac4449 gofmt -r 'α[β:len(α)] -> α[β:]' -w src/cmd src/pkg by Russ Cox · 15 years ago
  48. e70cedf remove bytes.Copy by Rob Pike · 15 years ago
  49. 1698934 - replaced gofmt expression formatting algorithm with by Robert Griesemer · 15 years ago
  50. 40621d5 remove semis after statements in one-statement statement lists by Robert Griesemer · 15 years ago
  51. 368f8cb - fine-tuning of one-line func heuristic (nodes.go) by Robert Griesemer · 15 years ago
  52. 688a6ff gofmt-ify bytes by Robert Griesemer · 15 years ago
  53. 63e668d return "<nil>" when calling String() on a nil bytes.Buffer. by Rob Pike · 15 years ago
  54. 094f1d5 more lgtm files from gofmt by Russ Cox · 15 years ago
  55. 9e7f3a4 restore the old algorithm. the new one is more memory efficient in large cases by Rob Pike · 16 years ago
  56. 6efd7e6 move strings.Buffer into bytes by Rob Pike · 16 years ago
  57. d5be41f rename bytes.Buffer.Data() to bytes.Buffer.Bytes() by Rob Pike · 16 years ago
  58. 3b864e4 convert low-level (used by testing) packages to by Russ Cox · 16 years ago
  59. d3a412a io.StringBytes -> strings.Bytes io.ByteBuffer -> bytes.Buffer by Russ Cox · 16 years ago[Renamed (75%) from src/pkg/io/bytebuffer.go]
  60. a0bcaf4 Change os.Error convention: by Russ Cox · 16 years ago
  61. 5766553 fix io.Bytebuffer.Read for new EOF semantics by Rob Pike · 16 years ago
  62. 64684cc introduce os.EOF and io.ErrUnexpectedEOF. by Russ Cox · 16 years ago
  63. 08aab44 Add ReadByte to bytebuffer by Scott Schwartz · 16 years ago
  64. d90e7cb mv src/lib to src/pkg by Rob Pike · 16 years ago[Renamed from src/lib/io/bytebuffer.go]
  65. be869ba add io.ByteReader. by Russ Cox · 16 years ago
  66. 55b70d6c Return error from WriteByte, to match bufio.Writer. by Russ Cox · 16 years ago
  67. 472e191 ByteBuffer.WriteByte by Robert Griesemer · 16 years ago
  68. ea79b82 fix Truncate comment: by Russ Cox · 16 years ago
  69. 28db3e8 ByteBuffer.Truncate(n int) by Robert Griesemer · 16 years ago
  70. eea33fc better io.ByteBuffer implementation: by Robert Griesemer · 16 years ago
  71. aaf63f8 Step 1 of the Big Error Shift: make os.Error an interface and replace *os.Errors with os.Errors. by Rob Pike · 16 years ago
  72. 0ea0919 Extremely minor fix to ByteBuffer. by Peter McKenzie · 16 years ago
  73. 7bb335c document io by Rob Pike · 16 years ago
  74. 839a684 delete export by Russ Cox · 16 years ago
  75. b74e3b9 add a couple of helper methods to io.ByteBuffer by Rob Pike · 16 years ago
  76. 5564504 new new & make by Russ Cox · 16 years ago
  77. 08ca30b change *map to map; *chan to chan; new(T) to new(*T) by Russ Cox · 16 years ago
  78. d47d888 convert *[] to []. by Russ Cox · 16 years ago
  79. a10267a If ByteBuffer has never been used, b.buf is nil but Data() should still work. by Rob Pike · 16 years ago
  80. 5f9254c make a (rudimentary) ByteBuffer and put it in package "io". by Rob Pike · 16 years ago