| Commit message (Expand) | Author | Age | Files | Lines |
| * | strings: optimize Replace by using a strings.Builder | Polina Osadcha | 2020-08-17 | 1 | -6/+6 |
| * | bytes, strings: align requirements for functions passed to FieldFuncs | Martin Möhrmann | 2020-04-29 | 1 | -0/+3 |
| * | strings: simpler and slightly faster implementation of FieldsFunc | Robert Griesemer | 2020-04-28 | 1 | -11/+15 |
| * | strings: remove an obsolete doc note for FieldsFunc | Praveen Kumar | 2020-04-23 | 1 | -2/+0 |
| * | strings: make variable/type association consistent in function signatures | Alexander Greim | 2020-03-30 | 1 | -3/+3 |
| * | strings: narrow the search range of IndexByte in Index | Andy Pan | 2020-03-23 | 1 | -4/+4 |
| * | strings, bytes: improve IndexAny and LastIndexAny performance | erifan01 | 2020-03-11 | 1 | -8/+36 |
| * | bytes, strings: moves indexRabinKarp function to internal/bytealg | erifan01 | 2020-03-04 | 1 | -64/+4 |
| * | strings: update Join parameter name for clarity | Thomas Symborski | 2020-01-15 | 1 | -10/+10 |
| * | strings: fix nonexistent path in comment | po3rin | 2019-12-06 | 1 | -1/+1 |
| * | strings, bytes: clarify usage of EqualFolds | Andrew Medvedev | 2019-09-21 | 1 | -1/+2 |
| * | strings: clarify usage of Title and ToTitle | Andrew Todd | 2019-07-30 | 1 | -3/+4 |
| * | strings, bytes: add ToValidUTF8 | Martin Möhrmann | 2019-05-01 | 1 | -0/+50 |
| * | strings: remove "a copy of the string" from ToUpper/ToLower comments | Максадбек Ахмедов | 2019-04-14 | 1 | -2/+2 |
| * | strings: use Go style character range comparison in ToUpper/ToLower | Tobias Klauser | 2019-04-09 | 1 | -4/+4 |
| * | strings: unindent Fields | Tobias Klauser | 2019-04-08 | 1 | -27/+27 |
| * | bytes, strings: speed up TrimSpace 4-5x for common ASCII cases | Ben Hoyt | 2019-03-12 | 1 | -1/+30 |
| * | strings,bytes: use inlineable function trampolines instead of linkname | Keith Randall | 2018-11-08 | 1 | -0/+5 |
| * | strings: remove empty line | 沈涛 | 2018-11-08 | 1 | -1/+0 |
| * | strings: correctly handle invalid utf8 sequences in Map | Martin Möhrmann | 2018-10-03 | 1 | -12/+12 |
| * | bytes, strings: add ReplaceAll | Brad Fitzpatrick | 2018-09-26 | 1 | -0/+9 |
| * | strings: use Builder in ToUpper and ToLower | Tom Thorogood | 2018-09-26 | 1 | -6/+8 |
| * | strings, bytes: optimize function Index | erifan01 | 2018-09-13 | 1 | -13/+15 |
| * | strings: simplify Join using Builder | Phil Pearl | 2018-09-02 | 1 | -13/+6 |
| * | strings: use Builder in Repeat to avoid an allocation | go101 | 2018-08-22 | 1 | -7/+17 |
| * | strings, bytes: avoid unnecessary function literals | Johan Brandhorst | 2018-08-22 | 1 | -3/+3 |
| * | strings: use Builder in Map | Michael Fraenkel | 2018-08-22 | 1 | -27/+15 |
| * | strings: revise ToUpperSpecial and ToLowerSpecial wording | Kevin Zita | 2018-08-21 | 1 | -2/+2 |
| * | strings: add note for new Go developers to TrimLeft and TrimRight | Daniel Martí | 2018-06-29 | 1 | -0/+4 |
| * | strings: fix encoding of \u0080 in map | Martin Möhrmann | 2018-05-04 | 1 | -2/+2 |
| * | bytes, strings: improve EqualFold fast version for ASCII | Eric Pauley | 2018-05-01 | 1 | -3/+3 |
| * | internal/bytealg: move short string Index implementations into bytealg | Keith Randall | 2018-03-04 | 1 | -0/+79 |
| * | internal/bytealg: move Count to bytealg | Keith Randall | 2018-03-04 | 1 | -2/+7 |
| * | bytes, strings: restore O(1) behavior of IndexAny(s, "") and LastIndexAny(s, "") | Russ Cox | 2017-11-15 | 1 | -0/+8 |
| * | bytes,strings: in generic Index, use mix of IndexByte and Rabin-Karp | Keith Randall | 2017-11-15 | 1 | -0/+24 |
| * | strings: optimize ToLower | Agniva De Sarker | 2017-11-08 | 1 | -1/+27 |
| * | strings: optimize ToUpper | Agniva De Sarker | 2017-11-07 | 1 | -1/+27 |
| * | strings: improve readability of IndexAny and LastIndexAny functions. | Gabriel Aszalos | 2017-09-25 | 1 | -28/+24 |
| * | strings: use slice instead of list and array in Fields comment | Martin Möhrmann | 2017-08-14 | 1 | -2/+2 |
| * | strings: speed up FieldsFunc | Martin Möhrmann | 2017-08-13 | 1 | -81/+29 |
| * | strings: avoid unnecessary variable setting | Kevin Burke | 2017-08-09 | 1 | -2/+1 |
| * | strings: document Split{,N,After,AfterN} edge cases | Alberto Donizetti | 2017-06-06 | 1 | -4/+22 |
| * | strings: simplify indexFunc | Michael Darakananda | 2017-05-24 | 1 | -9/+2 |
| * | strings: optimize Count for amd64 | Josselin Costanzi | 2017-04-07 | 1 | -3/+2 |
| * | strings: speed up Fields | Martin Möhrmann | 2017-04-04 | 1 | -1/+108 |
| * | bytes, strings: declare variables inside loop they're used in | Eric Lagergren | 2017-04-03 | 1 | -1/+1 |
| * | strings: fix handling of invalid UTF-8 sequences in Map | Martin Möhrmann | 2017-02-28 | 1 | -1/+11 |
| * | strings: speed up Map | Martin Möhrmann | 2017-02-24 | 1 | -20/+41 |
| * | strings: make parameters names less confusing | Alberto Donizetti | 2017-02-11 | 1 | -14/+14 |
| * | bytes, strings: optimize Split* | Aliaksandr Valialkin | 2017-02-08 | 1 | -12/+13 |