aboutsummaryrefslogtreecommitdiff
path: root/src/strings/strings.go
AgeCommit message (Expand)Author
2020-08-17strings: optimize Replace by using a strings.BuilderPolina Osadcha
2020-04-29bytes, strings: align requirements for functions passed to FieldFuncsMartin Möhrmann
2020-04-28strings: simpler and slightly faster implementation of FieldsFuncRobert Griesemer
2020-04-23strings: remove an obsolete doc note for FieldsFuncPraveen Kumar
2020-03-30strings: make variable/type association consistent in function signaturesAlexander Greim
2020-03-23strings: narrow the search range of IndexByte in IndexAndy Pan
2020-03-11strings, bytes: improve IndexAny and LastIndexAny performanceerifan01
2020-03-04bytes, strings: moves indexRabinKarp function to internal/bytealgerifan01
2020-01-15strings: update Join parameter name for clarityThomas Symborski
2019-12-06strings: fix nonexistent path in commentpo3rin
2019-09-21strings, bytes: clarify usage of EqualFoldsAndrew Medvedev
2019-07-30strings: clarify usage of Title and ToTitleAndrew Todd
2019-05-01strings, bytes: add ToValidUTF8Martin Möhrmann
2019-04-14strings: remove "a copy of the string" from ToUpper/ToLower commentsМаксадбек Ахмедов
2019-04-09strings: use Go style character range comparison in ToUpper/ToLowerTobias Klauser
2019-04-08strings: unindent FieldsTobias Klauser
2019-03-12bytes, strings: speed up TrimSpace 4-5x for common ASCII casesBen Hoyt
2018-11-08strings,bytes: use inlineable function trampolines instead of linknameKeith Randall
2018-11-08strings: remove empty line沈涛
2018-10-03strings: correctly handle invalid utf8 sequences in MapMartin Möhrmann
2018-09-26bytes, strings: add ReplaceAllBrad Fitzpatrick
2018-09-26strings: use Builder in ToUpper and ToLowerTom Thorogood
2018-09-13strings, bytes: optimize function Indexerifan01
2018-09-02strings: simplify Join using BuilderPhil Pearl
2018-08-22strings: use Builder in Repeat to avoid an allocationgo101
2018-08-22strings, bytes: avoid unnecessary function literalsJohan Brandhorst
2018-08-22strings: use Builder in MapMichael Fraenkel
2018-08-21strings: revise ToUpperSpecial and ToLowerSpecial wordingKevin Zita
2018-06-29strings: add note for new Go developers to TrimLeft and TrimRightDaniel Martí
2018-05-04strings: fix encoding of \u0080 in mapMartin Möhrmann
2018-05-01bytes, strings: improve EqualFold fast version for ASCIIEric Pauley
2018-03-04internal/bytealg: move short string Index implementations into bytealgKeith Randall
2018-03-04internal/bytealg: move Count to bytealgKeith Randall
2017-11-15bytes, strings: restore O(1) behavior of IndexAny(s, "") and LastIndexAny(s, "")Russ Cox
2017-11-15bytes,strings: in generic Index, use mix of IndexByte and Rabin-KarpKeith Randall
2017-11-08strings: optimize ToLowerAgniva De Sarker
2017-11-07strings: optimize ToUpperAgniva De Sarker
2017-09-25strings: improve readability of IndexAny and LastIndexAny functions.Gabriel Aszalos
2017-08-14strings: use slice instead of list and array in Fields commentMartin Möhrmann
2017-08-13strings: speed up FieldsFuncMartin Möhrmann
2017-08-09strings: avoid unnecessary variable settingKevin Burke
2017-06-06strings: document Split{,N,After,AfterN} edge casesAlberto Donizetti
2017-05-24strings: simplify indexFuncMichael Darakananda
2017-04-07strings: optimize Count for amd64Josselin Costanzi
2017-04-04strings: speed up FieldsMartin Möhrmann
2017-04-03bytes, strings: declare variables inside loop they're used inEric Lagergren
2017-02-28strings: fix handling of invalid UTF-8 sequences in MapMartin Möhrmann
2017-02-24strings: speed up MapMartin Möhrmann
2017-02-11strings: make parameters names less confusingAlberto Donizetti
2017-02-08bytes, strings: optimize Split*Aliaksandr Valialkin