summaryrefslogtreecommitdiff
path: root/src/bytes
Commit message (Expand)AuthorAgeFilesLines
* bytes: add example for (*Buffer).GrowBrian Downs2017-07-161-0/+9
* bytes: note that NewBuffer take ownership of its argumentAlberto Donizetti2017-06-021-4/+6
* internal/cpu: new package to detect cpu featuresMartin Möhrmann2017-05-101-6/+6
* bytes: skip inline test by defaultMarvin Stenger2017-05-081-0/+5
* bytes: optimize Buffer's Write, WriteString, WriteByte, and WriteRuneMarvin Stenger2017-05-072-23/+79
* bytes: clarify documentation for UnreadByte/RuneRobert Griesemer2017-04-282-11/+44
* strings: optimize Count for amd64Josselin Costanzi2017-04-072-189/+4
* bytes, strings: declare variables inside loop they're used inEric Lagergren2017-04-031-1/+1
* all: fix minor misspellingsEric Lagergren2017-04-032-2/+2
* bytes: fix typo in commentJosselin Costanzi2017-03-221-1/+1
* bytes: add optimized countByte for amd64Josselin Costanzi2017-03-217-3/+304
* bytes: make bytes.Buffer cache-friendlyCarlo Alberto Ferraris2017-02-281-16/+25
* bytes, strings: optimize Split*Aliaksandr Valialkin2017-02-082-11/+65
* bytes: use Index in CountIlya Tocar2017-02-081-23/+9
* all: fix misspellingsshawnps2017-01-071-1/+1
* all: make copyright headers consistent with one space after periodMichael Munday2016-11-042-2/+2
* bytes, strings: update s390x code to match amd64 changesMichael Munday2016-11-021-7/+7
* bytes,strings: use IndexByte more often in Index on AMD64Ilya Tocar2016-11-011-2/+36
* bytes, strings: optimize multi-byte index operations on s390xMichael Munday2016-11-012-1/+119
* bytes, strings: optimize for ASCII setsJoe Tsai2016-10-282-6/+100
* bytes, strings: fix regression in IndexRuneJoe Tsai2016-10-262-21/+52
* bytes, strings: fix snake-case in variable nameJoe Tsai2016-10-261-6/+6
* bytes: encode size of rune read by ReadRune into lastRead to speed up UnreadRuneMartin Möhrmann2016-10-171-12/+16
* strings, bytes: panic if Repeat overflows or if given a negative countEmmanuel Odeke2016-10-012-0/+61
* bytes: cut 10 seconds off the race builder's benchmark testBrad Fitzpatrick2016-09-141-0/+7
* bytes: improve WriteRune performanceMartin Möhrmann2016-09-082-7/+21
* strings: use AVX2 for Index if availableIlya Tocar2016-09-071-1/+11
* bytes: make IndexRune fasterHiroshi Ioka2016-09-063-7/+59
* bytes: Use the same algorithm as strings for IndexIlya Tocar2016-09-013-31/+110
* bytes: add examplesCarlos C2016-08-161-0/+203
* bytes: use Run method for benchmarksMarcel van Lohuizen2016-06-031-166/+143
* all: use SeekStart, SeekCurrent, SeekEndJoe Tsai2016-05-062-4/+4
* strings, bytes: fix Reader 0 byte read at EOFBrad Fitzpatrick2016-05-032-8/+6
* all: remove unnecessary type conversionsMatthew Dempsky2016-04-151-1/+1
* all: use new io.SeekFoo constants instead of os.SEEK_FOOBrad Fitzpatrick2016-04-131-11/+10
* bytes: add ContainsRuneEmmanuel Odeke2016-04-082-0/+29
* bytes, string: add Reset method to ReaderJoe Tsai2016-04-072-0/+23
* bytes: add ContainsAnyRob Pike2016-04-062-0/+32
* all: delete dead test codeDominik Honnef2016-03-211-26/+0
* bytes: correct comment about usage of bytes.Buffer by PrintfMartin Möhrmann2016-03-101-1/+1
* all: single space after period.Brad Fitzpatrick2016-03-025-19/+19
* all: make copyright headers consistent with one space after periodBrad Fitzpatrick2016-03-011-1/+1
* all: remove public named return values when uselessBrad Fitzpatrick2016-02-292-5/+5
* runtime: avoid using REP prefix for IndexByteKeith Randall2016-02-261-0/+37
* bytes: make Buffer comment more accurateJosh Bleecher Snyder2016-02-211-1/+1
* bytes: document that buffer is reused in Truncate and ResetJoe Tsai2015-12-181-7/+10
* bytes: improve Compare function on amd64 for large byte arraysUttam C Pawar2015-08-261-0/+31
* Revert "bytes: document that Buffer values must not be copied"Alan Donovan2015-07-231-1/+0
* bytes: document that Buffer values must not be copiedAlan Donovan2015-07-231-0/+1
* bytes, strings: add LastIndexByteDmitry Vyukov2015-04-302-0/+27