aboutsummaryrefslogtreecommitdiff
path: root/src/bytes
AgeCommit message (Expand)Author
2022-04-16bytes: explode checks for n too largePhilippe Antoine
2022-04-11all: gofmt main repoRuss Cox
2022-04-07strings, bytes: improve the description of simple case-folding in EqualFoldhopehook
2022-04-06bytes: limit allocation in SplitNPhilippe Antoine
2022-03-28bytes: restore old Trim/TrimLeft behavior for nilIan Lance Taylor
2022-03-10bytes: rely on runtime.growslice for growingJoe Tsai
2022-02-08bytes, strings: mention Cut in docs for Split and SplitNIan Lance Taylor
2021-12-13all: gofmt -w -r 'interface{} -> any' srcRuss Cox
2021-11-05strings, bytes: deprecate Titlesmasher164
2021-11-05bytes: add example with (*Buffer).Cap, (*Buffer).Read, (*Buffer).ReadBytejiahua wang
2021-11-02bytes: test for page boundary crosses on sep of IndexPaul E. Murphy
2021-11-02net/netip: add new IP address packageBrad Fitzpatrick
2021-10-31bytes: remove redundant type conversionAlexander Melentyev
2021-10-28all: go fix -fix=buildtag std cmd (except for bootstrap deps, vendor)Russ Cox
2021-10-13bytes: fix Cut godoc typokjgorman
2021-10-06strings,bytes: avoid allocations in Trim/TrimLeft/TrimRightCarlo Alberto Ferraris
2021-10-06bytes, strings: add CutRuss Cox
2021-09-27bytes: add example for (*Buffer).Nextjiahua wang
2021-08-25bytes, strings: optimize Trim for single byte cutsetsJoe Tsai
2021-03-15bytes: correct tense in commentIan Lance Taylor
2021-03-13all: remove duplicate wordsJohn Bampton
2021-02-24bufio, bytes, strings: handle negative runes in WriteRuneDavid Benjamin
2021-02-20all: go fmt std cmd (but revert vendor)Russ Cox
2020-11-11bytes: add example for (*Buffer).BytesFederico Guerinoni
2020-10-20all: update references to symbols moved from io/ioutil to ioRuss Cox
2020-09-23bytes, internal/bytealg: fix incorrect IndexString usageMichael Munday
2020-05-01bytes: simpler and faster FieldsFunc (apply same changes as for strings)Robert Griesemer
2020-04-29bytes, strings: align requirements for functions passed to FieldFuncsMartin Möhrmann
2020-03-23bytes: narrow the search 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-02-26bytes: deflake TestGrow by using testing.AllocsPerRunHowJMay
2019-11-02hash/maphash: move bytes/hash to hash/maphashKeith Randall
2019-10-21bytes/hash: initialize all 64 bits of hash seedKeith Randall
2019-10-07bytes: add endian base compare testMeng Zhuo
2019-09-21strings, bytes: clarify usage of EqualFoldsAndrew Medvedev
2019-09-03bytes/hash: disable seed test on 32-bit platformsKeith Randall
2019-08-29bytes/hash: add hashing package for bytes and stringsKeith Randall
2019-05-28bytes: remove obsolete commentMaxim Eryomenko
2019-05-01strings, bytes: add ToValidUTF8Martin Möhrmann
2019-04-24bytes, internal/bytealg: simplify EqualJosh Bleecher Snyder
2019-04-09bytes: optimize ToLower and ToUpper for ASCII-only caseTobias Klauser
2019-04-03bytes: merge explodetests into splittestsTobias Klauser
2019-03-29bytes, strings: add tests for TrimLeftFunc and TrimRightFuncBen Hoyt
2019-03-27bytes: make TrimSpace return nil on all-space inputBen Hoyt
2019-03-15bytes: add hard benchmarks for Index and CountTobias Klauser
2019-03-12bytes, strings: speed up TrimSpace 4-5x for common ASCII casesBen Hoyt
2019-03-09bytes: return early in Repeat if count is 0Tobias Klauser
2019-03-08bytes: use Rabin-Karp algorithm for LastIndexTobias Klauser
2019-03-08bytes: add benchmark for LastIndexTobias Klauser