- 403ab0f internal/bytealg: move IndexByte asssembly to the new bytealg package by Keith Randall · 7 years ago
- 562346b bytes: add asm version of Index for short strings on arm64 by Wei Xiao · 7 years ago
- ed8b7de bytes: mention strings.Builder in Buffer.String docs by Brad Fitzpatrick · 7 years ago
- 9a14cd9 bytes: add optimized countByte for arm64 by Wei Xiao · 8 years ago
- f91ab6c bytes: don't use an iota for the readOp constants by Daniel Martí · 7 years ago
- 962834d bytes: make all readOp constants actually typed by Daniel Martí · 7 years ago
- 2a166c9 bytes, strings: restore O(1) behavior of IndexAny(s, "") and LastIndexAny(s, "") by Russ Cox · 7 years ago
- e7628bee bytes: make ExampleTrimLeft and ExampleTrimRight match by Russ Cox · 7 years ago
- 22671e7 bytes: change ExampleReader_Len to use a non-ASCII string by Russ Cox · 7 years ago
- a025277 bytes,strings: in generic Index, use mix of IndexByte and Rabin-Karp by Keith Randall · 7 years ago
- 936b977 bytes: reduce work in IndexNearPageBoundary test by Keith Randall · 7 years ago
- a9e2479 bytes: set cap of slices returned by Split and Fields and friends by Ian Lance Taylor · 7 years ago
- 3043c35 bytes: add more page boundary tests by Keith Randall · 7 years ago
- 7128ed0 bytes: add examples of Equal and IndexByte by Javier Segura · 7 years ago
- 07e36af bytes: panic in ReadFrom with more information with negative Read counts by Afanasev Stanislav · 7 years ago
- 52abe50 bytes: correct Map documentation by Gabriel Aszalos · 7 years ago
- f2af0c1 bytes: explicitly state if a function expects UTF-8-encoded data by Tim Cooper · 7 years ago
- b71f396 bytes: improve readability of IndexAny and LastIndexAny functions by Gabriel Aszalos · 7 years ago
- 6945c67 cmd/compile: merge bytes inline test with the rest by Daniel Martí · 7 years ago
- dd5a86f bytes: add documentation to reader methods by Gabriel Aszalos · 7 years ago
- 9775788 bytes: improve test readability by Gabriel Aszalos · 7 years ago
- a696db1 bytes: correct message in test log by Gabriel Aszalos · 7 years ago
- 66ce8e3 bytes: removed unnecessary slicing on copy by Gabriel Aszalos · 7 years ago
- de25b12 bytes: add example for Len function of Reader by Andrzej Żeżel · 7 years ago
- 394f6a5 bytes: Add missing examples to functions by Borja Clemente · 8 years ago
- 6cbe5c8 bytes: add examples for TrimLeft and TrimRight by Michael Brandenburg · 8 years ago
- 1ba4556 bytes: clean-up of buffer.go by Marvin Stenger · 8 years ago
- 59413d3 all: unindent some big chunks of code by Daniel Martí · 8 years ago
- 6a34ffa bytes: avoid overflow in (*Buffer).Grow and ReadFrom by Bryan C. Mills · 8 years ago
- 7df29b5 bytes: speed up Fields and FieldsFunc by Martin Möhrmann · 8 years ago
- cd619ca bytes: add example for (*Buffer).Grow by Brian Downs · 8 years ago
- 29469d2 bytes: note that NewBuffer take ownership of its argument by Alberto Donizetti · 8 years ago
- 69972ae internal/cpu: new package to detect cpu features by Martin Möhrmann · 8 years ago
- 8c49c06 bytes: skip inline test by default by Marvin Stenger · 8 years ago
- c08ac36 bytes: optimize Buffer's Write, WriteString, WriteByte, and WriteRune by Marvin Stenger · 8 years ago
- 86cfe93 bytes: clarify documentation for UnreadByte/Rune by Robert Griesemer · 8 years ago
- d206af1 strings: optimize Count for amd64 by Josselin Costanzi · 8 years ago
- 59f6549 bytes, strings: declare variables inside loop they're used in by Eric Lagergren · 8 years ago
- 094498c all: fix minor misspellings by Eric Lagergren · 8 years ago
- 0d3cd51 bytes: fix typo in comment by Josselin Costanzi · 8 years ago
- 01cd22c bytes: add optimized countByte for amd64 by Josselin Costanzi · 8 years ago
- 5531040 bytes: make bytes.Buffer cache-friendly by Carlo Alberto Ferraris · 8 years ago
- 8946502 bytes, strings: optimize Split* by Aliaksandr Valialkin · 8 years ago
- 438818d bytes: use Index in Count by Ilya Tocar · 8 years ago
- 067bab0 all: fix misspellings by shawnps · 8 years ago
- cfd8916 all: make copyright headers consistent with one space after period by Michael Munday · 8 years ago
- 53cc691 bytes, strings: update s390x code to match amd64 changes by Michael Munday · 8 years ago
- f31492f bytes,strings: use IndexByte more often in Index on AMD64 by Ilya Tocar · 8 years ago
- 47c58b4 bytes, strings: optimize multi-byte index operations on s390x by Michael Munday · 8 years ago
- 9a8c695 bytes, strings: optimize for ASCII sets by Joe Tsai · 8 years ago
- 4b26657 bytes, strings: fix regression in IndexRune by Joe Tsai · 8 years ago
- 03361fd bytes, strings: fix snake-case in variable name by Joe Tsai · 8 years ago
- 99df54f bytes: encode size of rune read by ReadRune into lastRead to speed up UnreadRune by Martin Möhrmann · 9 years ago
- 7b40b0c strings, bytes: panic if Repeat overflows or if given a negative count by Emmanuel Odeke · 8 years ago
- 9a7ce41 bytes: cut 10 seconds off the race builder's benchmark test by Brad Fitzpatrick · 8 years ago
- 2321895 bytes: improve WriteRune performance by Martin Möhrmann · 9 years ago
- 0cff219 strings: use AVX2 for Index if available by Ilya Tocar · 9 years ago
- e10286a bytes: make IndexRune faster by Hiroshi Ioka · 9 years ago
- 44f1854 bytes: Use the same algorithm as strings for Index by Ilya Tocar · 9 years ago
- 14e446d bytes: add examples by Carlos C · 9 years ago
- 9e112a3 bytes: use Run method for benchmarks by Marcel van Lohuizen · 9 years ago
- acc757f all: use SeekStart, SeekCurrent, SeekEnd by Joe Tsai · 9 years ago
- 0118242 strings, bytes: fix Reader 0 byte read at EOF by Brad Fitzpatrick · 9 years ago
- 0da4dbe all: remove unnecessary type conversions by Matthew Dempsky · 9 years ago
- 381e5ee all: use new io.SeekFoo constants instead of os.SEEK_FOO by Brad Fitzpatrick · 9 years ago
- 59af53d bytes: add ContainsRune by Emmanuel Odeke · 9 years ago
- e88f890 bytes, string: add Reset method to Reader by Joe Tsai · 9 years ago
- d636d79 bytes: add ContainsAny by Rob Pike · 9 years ago
- b2cf571 all: delete dead test code by Dominik Honnef · 9 years ago
- ac1608a bytes: correct comment about usage of bytes.Buffer by Printf by Martin Möhrmann · 9 years ago
- 5fea2cc all: single space after period. by Brad Fitzpatrick · 9 years ago
- 5194744 all: make copyright headers consistent with one space after period by Brad Fitzpatrick · 9 years ago
- 351c15f all: remove public named return values when useless by Brad Fitzpatrick · 9 years ago
- 687abca runtime: avoid using REP prefix for IndexByte by Keith Randall · 9 years ago
- de6a588 bytes: make Buffer comment more accurate by Josh Bleecher Snyder · 10 years ago
- 5270b57 bytes: document that buffer is reused in Truncate and Reset by Joe Tsai · 9 years ago
- 32add8d bytes: improve Compare function on amd64 for large byte arrays by Uttam C Pawar · 10 years ago
- 02dd98e Revert "bytes: document that Buffer values must not be copied" by Alan Donovan · 10 years ago
- b1177d3 bytes: document that Buffer values must not be copied by Alan Donovan · 10 years ago
- 0fb5475 bytes, strings: add LastIndexByte by Dmitry Vyukov · 10 years ago
- c264c87 bytes, strings: add Reader.Size methods by Brad Fitzpatrick · 10 years ago
- 5242d2c bytes: fix comment by Josh Bleecher Snyder · 10 years ago
- 90554be bytes: export Cap method for buffer by Cristian Staretu · 10 years ago
- e2543ef runtime: add runtime.cmpstring and bytes.Compare by Dave Cheney · 10 years ago
- 3f12d27 bytes, os/exec, strings: fix a few BUG comments by areski · 10 years ago
- 19c1b16 bytes, strings: improve documentation for Count functions by Robert Griesemer · 10 years ago
- ee3a1ff all: update old comments referencing *.goc files by Brad Fitzpatrick · 10 years ago
- 6077f0f cmd/go: fix bytes and net the right way by Russ Cox · 10 years ago
- e9ec8e7 bytes, strings: document that FieldsFunc f must not be stateful by Russ Cox · 10 years ago
- c007ce8 build: move package sources from src/pkg to src by Russ Cox · 11 years ago