1. a025277 bytes,strings: in generic Index, use mix of IndexByte and Rabin-Karp by Keith Randall · 7 years ago
  2. 65fbf0e strings: optimize ToLower by Agniva De Sarker · 7 years ago
  3. 13cfb15 strings: optimize ToUpper by Agniva De Sarker · 7 years ago
  4. d206af1 strings: optimize Count for amd64 by Josselin Costanzi · 8 years ago
  5. bebfd4b strings: speed up Fields by Martin Möhrmann · 8 years ago
  6. 3c023f7 strings: fix handling of invalid UTF-8 sequences in Map by Martin Möhrmann · 8 years ago
  7. 8946502 bytes, strings: optimize Split* by Aliaksandr Valialkin · 8 years ago
  8. 655a3b5 strings: ignore allocation test in cover mode by Brad Fitzpatrick · 8 years ago
  9. 9a8c695 bytes, strings: optimize for ASCII sets by Joe Tsai · 8 years ago
  10. 4b26657 bytes, strings: fix regression in IndexRune by Joe Tsai · 8 years ago
  11. 7b40b0c strings, bytes: panic if Repeat overflows or if given a negative count by Emmanuel Odeke · 8 years ago
  12. 0cff219 strings: use AVX2 for Index if available by Ilya Tocar · 9 years ago
  13. 8737dac strings: make IndexRune faster by Hiroshi Ioka · 9 years ago
  14. 429bbf3 strings: fix and reenable amd64 Index for 17-31 byte strings by Ilya Tocar · 9 years ago
  15. 0bc14f5 strings: fix Contains on amd64 by Keith Randall · 9 years ago
  16. acc757f all: use SeekStart, SeekCurrent, SeekEnd by Joe Tsai · 9 years ago
  17. 819e0b2 strings: improve explode and correct comment by Martin Möhrmann · 9 years ago
  18. 5fea2cc all: single space after period. by Brad Fitzpatrick · 9 years ago
  19. 95333ae strings: add asm version of Index() for short strings on amd64 by Ilya Tocar · 9 years ago
  20. 0fb5475 bytes, strings: add LastIndexByte by Dmitry Vyukov · 10 years ago
  21. 6262192 strings: Add benchmark test for trim function by John Potocny · 10 years ago
  22. c007ce8 build: move package sources from src/pkg to src by Russ Cox · 11 years ago[Renamed from src/pkg/strings/strings_test.go]
  23. 5533780 strings: use Rabin-Karp algorithm for LastIndex. by Rui Ueyama · 11 years ago
  24. 548dece strings: avoid pointless slice growth in makeBenchInputHard by Josh Bleecher Snyder · 11 years ago
  25. 7bcbb65 bytes, strings: optimize Repeat by Rui Ueyama · 11 years ago
  26. 13ea1fd net/http, strings, bytes: fix http race, revert part of Reader behavior change by Brad Fitzpatrick · 11 years ago
  27. 7ff8e90 strings: fix off-by-one error in test by Rui Ueyama · 11 years ago go1.3beta1
  28. cc4bdf0 strings, bytes: ReadAt should not mutate receiver by Rui Ueyama · 11 years ago
  29. a509026 strings, bytes: fix Reader.UnreadRune by Rui Ueyama · 11 years ago
  30. 7054890 bytes, strings: improve Title test coverage by adding cases with underscore and unicode line separator by Shawn Smith · 11 years ago
  31. 14903f6 strings: add test for Count by Pieter Droogendijk · 12 years ago
  32. 1104a2a strings: add IndexByte benchmark by Brad Fitzpatrick · 12 years ago
  33. 4f43201 strings: remove allocations in Split(s, "") by Ewan Chou · 12 years ago
  34. 1bf66f0 all: fix a few more printf arg bugs found by go vet by Rob Pike · 12 years ago
  35. 937f91e strings: faster Count, Index by Donovan Hide · 12 years ago
  36. 23093f8 strings: better mean complexity for Count and Index. by Rémy Oudompheng · 12 years ago
  37. e515d80 bytes, strings: add TrimPrefix and TrimSuffix by Brad Fitzpatrick · 12 years ago
  38. 465b9c3 gofmt: apply gofmt -w src misc by Robert Griesemer · 12 years ago
  39. 0e60019 bytes, strings: add Fields benchmarks by Russ Cox · 13 years ago
  40. 6b77246 panics: use the new facilities of testing.B instead by Rob Pike · 13 years ago
  41. a250f37 update tree for new default type rule by Russ Cox · 13 years ago
  42. 356b8ee strings: fix test output by Christopher Wedgwood · 13 years ago
  43. 0f0c25d strings: Add ContainsAny and ContainsRune to correspond to IndexAny etc. by Scott Lawrence · 13 years ago
  44. 558e7fc various: avoid func compare by Russ Cox · 13 years ago
  45. 45e3bcb renaming_3: gofix -r go1pkgrename src/pkg/[m-z]* by Rob Pike · 13 years ago
  46. eb69292 src/pkg/[n-z]*: gofix -r error -force=error by Russ Cox · 13 years ago
  47. 8f57181 bytes, strings: use rune by Russ Cox · 13 years ago
  48. a8a18f6 strings: add EqualFold by Russ Cox · 13 years ago
  49. 90564a9 go/printer: changed max. number of newlines from 3 to 2 by Robert Griesemer · 14 years ago
  50. ebb1566 strings.Split: make the default to split all. by Rob Pike · 14 years ago
  51. 9cd3372 strings: implement UnreadByte, UnreadRune by Robert Griesemer · 14 years ago
  52. a7a854b strings: Map: avoid allocation when string is unchanged by Brad Fitzpatrick · 14 years ago
  53. f0cf7d2 testing: shorten some tests. by Rob Pike · 14 years ago
  54. 64f75f1 strings: better benchmark names; add BenchmarkIndex by Brad Fitzpatrick · 14 years ago
  55. 145108e strings: add IndexRune tests, ASCII fast path by Brad Fitzpatrick · 14 years ago
  56. 8530e8e strings: add LastIndexAny by Benny Siegert · 14 years ago
  57. e198a50 strings: Contains by Brad Fitzpatrick · 14 years ago
  58. 3478891 gofmt -s -w src misc by Robert Griesemer · 14 years ago
  59. 8ee9865 strings: fix minor bug in LastIndexFunc by Roger Peppe · 15 years ago
  60. 0cd8777 strings: fix Split("", "", -1) Fixes #980. by Scott Lawrence · 15 years ago
  61. e356f1d bytes: port IndexFunc and LastIndexFunc from strings package by Fazlul Shahriar · 15 years ago
  62. 8684a08 strings: add Title by Rob Pike · 15 years ago
  63. 38f1231 strings and bytes.Split: make count of 0 mean 0, not infinite. by Rob Pike · 15 years ago
  64. 0bf413a bytes, strings: add Replace by Russ Cox · 15 years ago
  65. 18274e0 Add IndexFunc and LastIndexFunc. by Roger Peppe · 15 years ago
  66. d7b4851 strings: add ReadRune to Reader by Kyle Consalus · 15 years ago
  67. ad2c5a4 Added strings.FieldsFunc, a generalization of strings.Fields in style of the strings.Trim*Func functions. by Kyle Consalus · 15 years ago
  68. 92ac0cf strings: add IndexRune, Trim, TrimLeft, TrimRight, and the generic equivalents TrimFunc, TrimLeftFunc, TrimRightFunc by Michael Hoisie · 15 years ago
  69. 4e2b7f8 Unicode: provide an ability to supplement the case-mapping tables by Rob Pike · 15 years ago
  70. d0ffee8 bytes, strings: IndexOfAny + first use in go/doc by Robert Griesemer · 15 years ago
  71. 9750adb strings: delete Runes, Bytes by Russ Cox · 15 years ago
  72. 7f501c0 bytes, strings: add new function Fields by Andrey Mirtchovski · 15 years ago
  73. d65a5cc 1) Change default gofmt default settings for by Robert Griesemer · 15 years ago
  74. 128974a bytes, strings: allow -1 in Map to mean "drop this character". by Kei Son · 15 years ago
  75. 1eba218 Runes: turn string into []int Split: fixed typo in documentation by Peter Froehlich · 15 years ago
  76. 8c1a627 add bytes.IndexByte; common case we can make fast later. by Rob Pike · 15 years ago
  77. 37f71e8 An asked-for-in #go-nuts extension to quickly create a repeated by David G. Andersen · 15 years ago
  78. 27779dd fix bug in bytes.Map and add test cases for Map in both strings and bytes packages. by Rob Pike · 15 years ago
  79. 3bb0032 - replaced gofmt expression formatting algorithm with by Robert Griesemer · 15 years ago
  80. 40621d5 remove semis after statements in one-statement statement lists by Robert Griesemer · 15 years ago
  81. 368f8cb - fine-tuning of one-line func heuristic (nodes.go) by Robert Griesemer · 15 years ago
  82. b8d88a9 gofmt-ify strings, template by Robert Griesemer · 15 years ago
  83. 5d436b9 bytes.SplitAfter and strings.SplitAfter most common usage is: by Russ Cox · 15 years ago
  84. 9154943 apply gofmt to rand reflect regexp rpc runtime sort strconv strings sync syscall testing time unicode unsafe utf8 by Russ Cox · 15 years ago
  85. ca6a0fe more "declared and not used". by Russ Cox · 16 years ago
  86. d80a177 make ToUpper, ToLower etc. handle unicode properly. Change their names too. by Rob Pike · 16 years ago
  87. 149e3d3 rearrange some constants. unicode package now defines MaxRune and ReplacementChar. by Rob Pike · 16 years ago
  88. b04ac10 convert non-low-level non-google pkg code to whole-package compilation. by Russ Cox · 16 years ago
  89. a50cbf6 style police: parens in if, for, switch, range by Russ Cox · 16 years ago
  90. 30533d6 Change strings.Split, bytes.Split to take a maximum substring count argument. by David Symonds · 16 years ago
  91. f315fb3 Basic HTTP client. by Steve Newman · 16 years ago
  92. d90e7cb mv src/lib to src/pkg by Rob Pike · 16 years ago[Renamed from src/lib/strings/strings_test.go]
  93. 031bf2c Add Upper, Lower, Trim methods to strings package. by Steve Newman · 16 years ago
  94. 9b2c5da directory-per-package step 1: move files from lib/X.go to lib/X/X.go by Rob Pike · 16 years ago[Renamed from src/lib/strings_test.go]
  95. be2edb5 Automated g4 rollback of changelist 25024, plus significant hand editing. by Russ Cox · 16 years ago
  96. 9f8f2e6 convert composite literals from { } to ( ). by Russ Cox · 16 years ago
  97. 839a684 delete export by Russ Cox · 16 years ago
  98. aedfb39 casify misc by Russ Cox · 16 years ago
  99. d47d888 convert *[] to []. by Russ Cox · 16 years ago
  100. 0d1cbaf2 strings.utflen -> utf8.RuneCount, RuneCountInString by Russ Cox · 16 years ago