summaryrefslogtreecommitdiff
path: root/src/bytes
Commit message (Expand)AuthorAgeFilesLines
* std: fix various nilness findingsAlan Donovan2023-04-201-1/+1
* all: fix misuses of "a" vs "an"cui fliter2023-04-041-1/+1
* all: add a few links in package godocsDaniel Martí2023-03-251-1/+1
* bytes: add Buffer.Available and Buffer.AvailableBufferJoe Tsai2023-03-133-0/+63
* bytes, strings: avoid unnecessary zero initializationJoe Tsai2023-02-271-12/+22
* bytes, strings: add ContainsFunchopehook2023-01-242-0/+16
* bytes,strings: add some examplesfangguizhen2023-01-201-0/+62
* bytes, strings: rename field in CutSuffix testsfangguizhen2023-01-201-3/+3
* bytes,strings: optimize RepeatCarlo Alberto Ferraris2022-09-272-6/+57
* bytes, strings: add ASCII fast path to EqualFoldCharlie Vieth2022-09-211-0/+30
* internal/bytealg: correct alignment checks for compare/memequal on riscv64Joel Sing2022-09-191-4/+13
* bytes: simplify code using unsafe.SliceDatacuiweixie2022-09-071-3/+1
* bytes: rely on utf8.AppendRuneJoe Tsai2022-08-232-19/+5
* bytes, strings: s/after/before/ in CutSuffixMichal Bohuslávek2022-08-191-1/+1
* strings, bytes: add CutPrefix and CutSuffixChangkun Ou2022-08-162-0/+68
* bytes: add Clone functionMartin Möhrmann2022-08-152-0/+43
* strings: avoid utf8.RuneError mangling in SplitJoe Tsai2022-08-081-0/+2
* bytes: document that Reader.Reset affects the result of SizeMuhammed Can Küçükaslan2022-07-261-2/+1
* internal/bytealg: optimize index function for ppc64le/power9Archana R2022-05-091-0/+30
* bytes: explode checks for n too largePhilippe Antoine2022-04-161-1/+1
* all: gofmt main repoRuss Cox2022-04-111-6/+8
* strings, bytes: improve the description of simple case-folding in EqualFoldhopehook2022-04-071-1/+1
* bytes: limit allocation in SplitNPhilippe Antoine2022-04-062-0/+5
* bytes: restore old Trim/TrimLeft behavior for nilIan Lance Taylor2022-03-282-11/+106
* bytes: rely on runtime.growslice for growingJoe Tsai2022-03-102-9/+37
* bytes, strings: mention Cut in docs for Split and SplitNIan Lance Taylor2022-02-081-0/+4
* all: gofmt -w -r 'interface{} -> any' srcRuss Cox2021-12-131-1/+1
* strings, bytes: deprecate Titlesmasher1642021-11-051-1/+2
* bytes: add example with (*Buffer).Cap, (*Buffer).Read, (*Buffer).ReadBytejiahua wang2021-11-051-0/+43
* bytes: test for page boundary crosses on sep of IndexPaul E. Murphy2021-11-021-1/+17
* net/netip: add new IP address packageBrad Fitzpatrick2021-11-021-1/+1
* bytes: remove redundant type conversionAlexander Melentyev2021-10-311-1/+1
* all: go fix -fix=buildtag std cmd (except for bootstrap deps, vendor)Russ Cox2021-10-281-1/+0
* bytes: fix Cut godoc typokjgorman2021-10-131-1/+1
* strings,bytes: avoid allocations in Trim/TrimLeft/TrimRightCarlo Alberto Ferraris2021-10-061-17/+81
* bytes, strings: add CutRuss Cox2021-10-063-68/+106
* bytes: add example for (*Buffer).Nextjiahua wang2021-09-271-0/+13
* bytes, strings: optimize Trim for single byte cutsetsJoe Tsai2021-08-252-5/+32
* bytes: correct tense in commentIan Lance Taylor2021-03-151-1/+1
* all: remove duplicate wordsJohn Bampton2021-03-131-1/+1
* bufio, bytes, strings: handle negative runes in WriteRuneDavid Benjamin2021-02-242-1/+13
* all: go fmt std cmd (but revert vendor)Russ Cox2021-02-201-0/+1
* bytes: add example for (*Buffer).BytesFederico Guerinoni2020-11-111-0/+7
* all: update references to symbols moved from io/ioutil to ioRuss Cox2020-10-201-5/+4
* bytes, internal/bytealg: fix incorrect IndexString usageMichael Munday2020-09-231-18/+32
* bytes: simpler and faster FieldsFunc (apply same changes as for strings)Robert Griesemer2020-05-011-10/+11
* bytes, strings: align requirements for functions passed to FieldFuncsMartin Möhrmann2020-04-291-2/+3
* bytes: narrow the search of IndexByte in IndexAndy Pan2020-03-231-4/+4
* strings, bytes: improve IndexAny and LastIndexAny performanceerifan012020-03-112-12/+139
* bytes, strings: moves indexRabinKarp function to internal/bytealgerifan012020-03-042-65/+27