aboutsummaryrefslogtreecommitdiff
path: root/src/strings
AgeCommit message (Expand)Author
2018-08-20strings: add Builder.CapDaniel Martí
2018-07-02strings: do much less redundant testing in TestCompareStringsIan Lance Taylor
2018-06-29bytes, strings: fix comparison of long byte slices on s390xbill_ofarrell
2018-06-29strings: add note for new Go developers to TrimLeft and TrimRightDaniel Martí
2018-06-01all: update comment URLs from HTTP to HTTPS, where possibleTim Cooper
2018-05-04strings: fix encoding of \u0080 in mapMartin Möhrmann
2018-05-01bytes, strings: improve EqualFold fast version for ASCIIEric Pauley
2018-04-26strings: clarify Replacer's replacement orderAlberto Donizetti
2018-04-03strings: fix flaky TestBuilderGrow testBrad Fitzpatrick
2018-04-02strings: speed-up replace for byteStringReplacer caseIlya Tocar
2018-03-04internal/bytealg: move short string Index implementations into bytealgKeith Randall
2018-03-04internal/bytealg: move Count to bytealgKeith Randall
2018-03-02internal/bytealg: move IndexByte asssembly to the new bytealg packageKeith Randall
2018-02-26strings: add Builder benchmarks comparing bytes.Buffer and strings.BuilderBrad Fitzpatrick
2018-01-09strings: prevent copyCheck from forcing Builder to escape and allocateBrad Fitzpatrick
2017-12-11strings: fix two Builder bugs allowing mutation of strings, remove ReadFromBrad Fitzpatrick
2017-12-08strings: delete unused constantCaleb Spare
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-11-06strings: add BuilderCaleb Spare
2017-10-31strings: add examples for specialCaseRamazan AYYILDIZ
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: add examples for Index functionsmolivier
2017-08-09strings: avoid unnecessary variable settingKevin Burke
2017-08-08strings: add Examples for TrimFunc and variants during Gophercon!Lyle Franklin
2017-07-15strings: add a example for TrimFuncFrancisco Rojas
2017-07-15strings: add a example for Compare funcFrancisco Rojas
2017-07-15strings: add example for IndexBytePablo Santiago Blum de Aguiar
2017-07-15strings: add example for LastIndexAnyEvan Hicks
2017-07-15strings: add example for ContainsRuneKate Manson
2017-06-06strings: document Split{,N,After,AfterN} edge casesAlberto Donizetti
2017-05-24strings: simplify indexFuncMichael Darakananda
2017-05-10internal/cpu: new package to detect cpu featuresMartin Möhrmann
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
2017-02-08bytes: use Index in CountIlya Tocar
2016-11-02bytes, strings: update s390x code to match amd64 changesMichael Munday
2016-11-01bytes,strings: use IndexByte more often in Index on AMD64Ilya Tocar
2016-11-01strings: ignore allocation test in cover modeBrad Fitzpatrick
2016-11-01bytes, strings: optimize multi-byte index operations on s390xMichael Munday
2016-10-28bytes, strings: optimize for ASCII setsJoe Tsai