1. 403ab0f internal/bytealg: move IndexByte asssembly to the new bytealg package by Keith Randall · 7 years ago
  2. 562346b bytes: add asm version of Index for short strings on arm64 by Wei Xiao · 7 years ago
  3. ed8b7de bytes: mention strings.Builder in Buffer.String docs by Brad Fitzpatrick · 7 years ago
  4. 9a14cd9 bytes: add optimized countByte for arm64 by Wei Xiao · 8 years ago
  5. f91ab6c bytes: don't use an iota for the readOp constants by Daniel Martí · 7 years ago
  6. 962834d bytes: make all readOp constants actually typed by Daniel Martí · 7 years ago
  7. 2a166c9 bytes, strings: restore O(1) behavior of IndexAny(s, "") and LastIndexAny(s, "") by Russ Cox · 7 years ago
  8. e7628bee bytes: make ExampleTrimLeft and ExampleTrimRight match by Russ Cox · 7 years ago
  9. 22671e7 bytes: change ExampleReader_Len to use a non-ASCII string by Russ Cox · 7 years ago
  10. a025277 bytes,strings: in generic Index, use mix of IndexByte and Rabin-Karp by Keith Randall · 7 years ago
  11. 936b977 bytes: reduce work in IndexNearPageBoundary test by Keith Randall · 7 years ago
  12. a9e2479 bytes: set cap of slices returned by Split and Fields and friends by Ian Lance Taylor · 7 years ago
  13. 3043c35 bytes: add more page boundary tests by Keith Randall · 7 years ago
  14. 7128ed0 bytes: add examples of Equal and IndexByte by Javier Segura · 7 years ago
  15. 07e36af bytes: panic in ReadFrom with more information with negative Read counts by Afanasev Stanislav · 7 years ago
  16. 52abe50 bytes: correct Map documentation by Gabriel Aszalos · 7 years ago
  17. f2af0c1 bytes: explicitly state if a function expects UTF-8-encoded data by Tim Cooper · 7 years ago
  18. b71f396 bytes: improve readability of IndexAny and LastIndexAny functions by Gabriel Aszalos · 7 years ago
  19. 6945c67 cmd/compile: merge bytes inline test with the rest by Daniel Martí · 7 years ago
  20. dd5a86f bytes: add documentation to reader methods by Gabriel Aszalos · 7 years ago
  21. 9775788 bytes: improve test readability by Gabriel Aszalos · 7 years ago
  22. a696db1 bytes: correct message in test log by Gabriel Aszalos · 7 years ago
  23. 66ce8e3 bytes: removed unnecessary slicing on copy by Gabriel Aszalos · 7 years ago
  24. de25b12 bytes: add example for Len function of Reader by Andrzej Żeżel · 7 years ago
  25. 394f6a5 bytes: Add missing examples to functions by Borja Clemente · 8 years ago
  26. 6cbe5c8 bytes: add examples for TrimLeft and TrimRight by Michael Brandenburg · 8 years ago
  27. 1ba4556 bytes: clean-up of buffer.go by Marvin Stenger · 8 years ago
  28. 59413d3 all: unindent some big chunks of code by Daniel Martí · 8 years ago
  29. 6a34ffa bytes: avoid overflow in (*Buffer).Grow and ReadFrom by Bryan C. Mills · 8 years ago
  30. 7df29b5 bytes: speed up Fields and FieldsFunc by Martin Möhrmann · 8 years ago
  31. cd619ca bytes: add example for (*Buffer).Grow by Brian Downs · 8 years ago
  32. 29469d2 bytes: note that NewBuffer take ownership of its argument by Alberto Donizetti · 8 years ago
  33. 69972ae internal/cpu: new package to detect cpu features by Martin Möhrmann · 8 years ago
  34. 8c49c06 bytes: skip inline test by default by Marvin Stenger · 8 years ago
  35. c08ac36 bytes: optimize Buffer's Write, WriteString, WriteByte, and WriteRune by Marvin Stenger · 8 years ago
  36. 86cfe93 bytes: clarify documentation for UnreadByte/Rune by Robert Griesemer · 8 years ago
  37. d206af1 strings: optimize Count for amd64 by Josselin Costanzi · 8 years ago
  38. 59f6549 bytes, strings: declare variables inside loop they're used in by Eric Lagergren · 8 years ago
  39. 094498c all: fix minor misspellings by Eric Lagergren · 8 years ago
  40. 0d3cd51 bytes: fix typo in comment by Josselin Costanzi · 8 years ago
  41. 01cd22c bytes: add optimized countByte for amd64 by Josselin Costanzi · 8 years ago
  42. 5531040 bytes: make bytes.Buffer cache-friendly by Carlo Alberto Ferraris · 8 years ago
  43. 8946502 bytes, strings: optimize Split* by Aliaksandr Valialkin · 8 years ago
  44. 438818d bytes: use Index in Count by Ilya Tocar · 8 years ago
  45. 067bab0 all: fix misspellings by shawnps · 8 years ago
  46. cfd8916 all: make copyright headers consistent with one space after period by Michael Munday · 8 years ago
  47. 53cc691 bytes, strings: update s390x code to match amd64 changes by Michael Munday · 8 years ago
  48. f31492f bytes,strings: use IndexByte more often in Index on AMD64 by Ilya Tocar · 8 years ago
  49. 47c58b4 bytes, strings: optimize multi-byte index operations on s390x by Michael Munday · 8 years ago
  50. 9a8c695 bytes, strings: optimize for ASCII sets by Joe Tsai · 8 years ago
  51. 4b26657 bytes, strings: fix regression in IndexRune by Joe Tsai · 8 years ago
  52. 03361fd bytes, strings: fix snake-case in variable name by Joe Tsai · 8 years ago
  53. 99df54f bytes: encode size of rune read by ReadRune into lastRead to speed up UnreadRune by Martin Möhrmann · 9 years ago
  54. 7b40b0c strings, bytes: panic if Repeat overflows or if given a negative count by Emmanuel Odeke · 8 years ago
  55. 9a7ce41 bytes: cut 10 seconds off the race builder's benchmark test by Brad Fitzpatrick · 8 years ago
  56. 2321895 bytes: improve WriteRune performance by Martin Möhrmann · 9 years ago
  57. 0cff219 strings: use AVX2 for Index if available by Ilya Tocar · 9 years ago
  58. e10286a bytes: make IndexRune faster by Hiroshi Ioka · 9 years ago
  59. 44f1854 bytes: Use the same algorithm as strings for Index by Ilya Tocar · 9 years ago
  60. 14e446d bytes: add examples by Carlos C · 9 years ago
  61. 9e112a3 bytes: use Run method for benchmarks by Marcel van Lohuizen · 9 years ago
  62. acc757f all: use SeekStart, SeekCurrent, SeekEnd by Joe Tsai · 9 years ago
  63. 0118242 strings, bytes: fix Reader 0 byte read at EOF by Brad Fitzpatrick · 9 years ago
  64. 0da4dbe all: remove unnecessary type conversions by Matthew Dempsky · 9 years ago
  65. 381e5ee all: use new io.SeekFoo constants instead of os.SEEK_FOO by Brad Fitzpatrick · 9 years ago
  66. 59af53d bytes: add ContainsRune by Emmanuel Odeke · 9 years ago
  67. e88f890 bytes, string: add Reset method to Reader by Joe Tsai · 9 years ago
  68. d636d79 bytes: add ContainsAny by Rob Pike · 9 years ago
  69. b2cf571 all: delete dead test code by Dominik Honnef · 9 years ago
  70. ac1608a bytes: correct comment about usage of bytes.Buffer by Printf by Martin Möhrmann · 9 years ago
  71. 5fea2cc all: single space after period. by Brad Fitzpatrick · 9 years ago
  72. 5194744 all: make copyright headers consistent with one space after period by Brad Fitzpatrick · 9 years ago
  73. 351c15f all: remove public named return values when useless by Brad Fitzpatrick · 9 years ago
  74. 687abca runtime: avoid using REP prefix for IndexByte by Keith Randall · 9 years ago
  75. de6a588 bytes: make Buffer comment more accurate by Josh Bleecher Snyder · 10 years ago
  76. 5270b57 bytes: document that buffer is reused in Truncate and Reset by Joe Tsai · 9 years ago
  77. 32add8d bytes: improve Compare function on amd64 for large byte arrays by Uttam C Pawar · 10 years ago
  78. 02dd98e Revert "bytes: document that Buffer values must not be copied" by Alan Donovan · 10 years ago
  79. b1177d3 bytes: document that Buffer values must not be copied by Alan Donovan · 10 years ago
  80. 0fb5475 bytes, strings: add LastIndexByte by Dmitry Vyukov · 10 years ago
  81. c264c87 bytes, strings: add Reader.Size methods by Brad Fitzpatrick · 10 years ago
  82. 5242d2c bytes: fix comment by Josh Bleecher Snyder · 10 years ago
  83. 90554be bytes: export Cap method for buffer by Cristian Staretu · 10 years ago
  84. e2543ef runtime: add runtime.cmpstring and bytes.Compare by Dave Cheney · 10 years ago
  85. 3f12d27 bytes, os/exec, strings: fix a few BUG comments by areski · 10 years ago
  86. 19c1b16 bytes, strings: improve documentation for Count functions by Robert Griesemer · 10 years ago
  87. ee3a1ff all: update old comments referencing *.goc files by Brad Fitzpatrick · 10 years ago
  88. 6077f0f cmd/go: fix bytes and net the right way by Russ Cox · 10 years ago
  89. e9ec8e7 bytes, strings: document that FieldsFunc f must not be stateful by Russ Cox · 10 years ago
  90. c007ce8 build: move package sources from src/pkg to src by Russ Cox · 11 years ago