- b3946dc runtime/bytes: fast Compare for byte arrays and strings. by Keith Randall · 12 years ago
- e42584e bytes: don't leave mprotect-ed pages after unsafe test. by Rémy Oudompheng · 12 years ago
- 3d5daa2 runtime: Implement faster equals for strings and bytes. by Keith Randall · 12 years ago
- 461e7b7 bytes: Benchmark Buffer's compactions by Robert Obryk · 12 years ago
- 0359af4 bytes: document that Buffer.Write grows the buffer by Rob Pike · 12 years ago
- 43e38d5 bytes: don't compact Buffer so aggressively by Brad Fitzpatrick · 12 years ago
- 994f596 bytes: don't grow Buffer if capacity is available by Brad Fitzpatrick · 12 years ago
- 07720b6 build: update assembly variable names for vet by Russ Cox · 12 years ago
- 1b6b1bc bytes,strings: remove user name from BUG in comment by Rob Pike · 12 years ago
- 464257ee bytes,string: move the BUG to the comment of the function it's about by Rob Pike · 12 years ago
- 691e5e3 bytes: annotate assembly functions with //go:noescape by Shenghou Ma · 12 years ago
- 30a9957 bytes: minor optimization to lastIndexFunc by Brad Fitzpatrick · 12 years ago
- e515d80 bytes, strings: add TrimPrefix and TrimSuffix by Brad Fitzpatrick · 12 years ago
- 53e342f bytes: fix UnreadByte failure after ReadBytes by Stéphane Travostino · 12 years ago
- 2e24a73 bytes: Fix missing godoc punctuation. by Matthew Dempsky · 12 years ago
- 8cf4590 bytes: Change Compare example to be consistent with sort.Search's. by Matthew Dempsky · 12 years ago
- c753404 bytes: fix docs: s/array/slice/. by Nigel Tao · 12 years ago
- 5696127 bytes: Examples recommending bytes.Compare(a, b) rel_op 0 to test a rel_op b. by Matthew Dempsky · 12 years ago
- b1c4a8e bytes: avoid duplicate malloc/copy in Buffer.ReadString by Rémy Oudompheng · 12 years ago
- c8fa7dc bytes, strings: fix Reader WriteTo return value on 0 bytes copied by Brad Fitzpatrick · 12 years ago
- 465b9c3 gofmt: apply gofmt -w src misc by Robert Griesemer · 12 years ago
- eae25d4 bytes, strings: add (*Reader).WriteTo by Evan Shaw · 12 years ago
- 749a445 bytes: fix tests and fix build by Andrew Gerrand · 12 years ago
- e7c222c bytes: make examples work in playground by Andrew Gerrand · 12 years ago
- 10ea651 build: make int 64 bits on amd64 by Russ Cox · 13 years ago
- 8572950 all: match asm variable names to Go func declarations by Russ Cox · 13 years ago
- 0e60019 bytes, strings: add Fields benchmarks by Russ Cox · 13 years ago
- c0efcac bytes: make Join return a new buffer on len(a) == 1 by Gustavo Niemeyer · 13 years ago
- 1255a63 bytes.Buffer: export the Grow method by Rob Pike · 13 years ago
- 9c97544 bytes: fixed typo. by Marcel van Lohuizen · 13 years ago
- d472d3f bytes: add assembly version of Equal for ARM by Dave Cheney · 13 years ago
- 0681b13 bytes: add assembly version of IndexByte for ARM by Dave Cheney · 13 years ago
- 85f2d18 bytes: document Compare/Equal semantics for nil arguments, and add tests. by David Symonds · 13 years ago
- 11e113d godoc: make example code more readable with new comment convention by Andrew Gerrand · 13 years ago
- 7127b6f bytes,strings: make *Reader implement io.ReaderAt by Brad Fitzpatrick · 13 years ago
- 977e8d1 bytes: add Reader by Brad Fitzpatrick · 13 years ago
- c59dc48 bytes.Buffer: return error in WriteTo if buffer is not drained by Rob Pike · 13 years ago
- 0a75a79 bytes: API tweaks by Rob Pike · 13 years ago
- 2050a9e build: remove Make.pkg, Make.tool by Russ Cox · 13 years ago
- 87079cc bytes: delete the test for huge buffers by Rob Pike · 13 years ago
- e17afa4 bytes.Buffer: remove dead code, complete documentation by Robert Griesemer · 13 years ago
- b0d2713 bytes.Buffer: restore panic on out-of-memory by Rob Pike · 13 years ago
- 35ba05e bytes: simplified logic by Robert Griesemer · 13 years ago
- 696bf79 bytes.Buffer: turn buffer size overflows into errors Fixes #2743. by Rob Pike · 13 years ago
- dcc5fe1 pkg/bytes: add the usual copyright notice to example_test.go by Olivier Duperray · 13 years ago
- 87ceb0c bytes: make Write and WriteString code look the same by Brad Fitzpatrick · 13 years ago
- 6a88f1c bytes.Buffer: read of 0 bytes at EOF shouldn't be an EOF by Rob Pike · 13 years ago
- 6b77246 panics: use the new facilities of testing.B instead by Rob Pike · 13 years ago
- 9834a25 testing: trim spaces before comparing example output by Andrew Gerrand · 13 years ago
- 9f65e99 go/printer, gofmt: don't write too many newlines by Robert Griesemer · 13 years ago
- a250f37 update tree for new default type rule by Russ Cox · 13 years ago
- 1278c6c bytes: lost edit from earlier CL by Russ Cox · 13 years ago
- 9b875bc bytes: faster Count, Index, Equal by Russ Cox · 13 years ago
- 7600281 bytes: fix test output by Christopher Wedgwood · 13 years ago
- 558e7fc various: avoid func compare by Russ Cox · 13 years ago
- 30aa701 renaming_2: gofix -r go1pkgrename src/pkg/[a-l]* by Rob Pike · 13 years ago
- ed92549 bytes: fix typo and resolve to be less idiotic next time by Andrew Gerrand · 13 years ago
- 1a4402a bytes: add Contains function by Andrew Gerrand · 13 years ago
- eb1717e all: rename os.EOF to io.EOF in various non-code contexts by Vincent Vanackere · 13 years ago
- c2049d2 src/pkg/[a-m]*: gofix -r error -force=error by Russ Cox · 13 years ago
- 8f57181 bytes, strings: use rune by Russ Cox · 13 years ago
- 707e5ac updates: append(y,[]byte(z)...) -> append(y,z...)" by Christopher Wedgwood · 13 years ago
- c68ae9d bytes: add EqualFold by Russ Cox · 14 years ago
- d16ceca bytes: fix Replace so it actually copies by Gustavo Niemeyer · 14 years ago
- a45c657 bytes.Buffer: clarify that NewBuffer is not for beginners by Rob Pike · 14 years ago
- 90564a9 go/printer: changed max. number of newlines from 3 to 2 by Robert Griesemer · 14 years ago
- ebb1566 strings.Split: make the default to split all. by Rob Pike · 14 years ago
- 712fb6d os.Error API: don't export os.ErrorString, use os.NewError consistently by Robert Griesemer · 14 years ago
- 6a186d3 src/pkg: make package doc comments consistently start with "Package foo". by Nigel Tao · 14 years ago
- 47f4ae1 bytes, strings: simplify Join by Evan Shaw · 14 years ago
- f0cf7d2 testing: shorten some tests. by Rob Pike · 14 years ago
- bbfad5f bytes: fix bugs in buffer.ReadBytes by Evan Shaw · 14 years ago
- 4438f50 buffer.go: minor optimization, expanded comment by Robert Griesemer · 14 years ago
- c9bf30c bytes: Add Buffer.ReadBytes, Buffer.ReadString by Evan Shaw · 14 years ago
- 7b4495c bytes.Buffer: fix typo in comment (doubled 'to') by Rob Pike · 14 years ago
- 2b0a276 bytes: fix TrimSpace typo by Peter Mundy · 14 years ago
- 353fd10 bytes.Buffer: Fix bug in UnreadByte. Error check was inverted. by Rob Pike · 14 years ago
- 1ce6245 throughout: fix broken calls to Printf etc. by Rob Pike · 14 years ago
- 42cfe48f use the new %U format for runes by Rob Pike · 14 years ago
- 415545e bytes: add Buffer.UnreadRune, Buffer.UnreadByte by Roger Peppe · 14 years ago
- 009aebd Removed bytes.Add and bytes.AddByte; we now have 'append'. by Kyle Consalus · 14 years ago
- 3cb4bdb utf8: make EncodeRune's destination the first argument. by Adam Langley · 14 years ago
- 8530e8e strings: add LastIndexAny by Benny Siegert · 14 years ago
- 49fdfe2 bytes: SSE for bytes.IndexByte on amd64 by Evan Shaw · 14 years ago
- 69c4e93 use append by Russ Cox · 14 years ago
- d86ab01 use copy by Russ Cox · 14 years ago
- 3478891 gofmt -s -w src misc by Robert Griesemer · 14 years ago
- b15b0a0 bytes: fix typo in AddByte comment by Andrew Gerrand · 15 years ago
- 81ba399 bytes, strings: change lastIndexFunc to use DecodeLastRune by Roger Peppe · 15 years ago
- 1959c3a tests: fix prints by Rob Pike · 15 years ago
- da392d9 build: no required environment variables by Russ Cox · 15 years ago
- 75f6a0c bytes: add IndexRune, FieldsFunc and To*Special by Christian Himpel · 15 years ago
- 99aab8b bytes: added test case for explode with blank string. by Scott Lawrence · 15 years ago
- 8b82169 bytes, strings: mention the n < 0 case in Split/SplitAfter doc comment by Andrew Gerrand · 15 years ago
- e356f1d bytes: port IndexFunc and LastIndexFunc from strings package by Fazlul Shahriar · 15 years ago
- 8629e5a strings.Bytes: fix typo in comment by Andrey Mirtchovski · 15 years ago
- de228c0 bytes: add Title by Rob Pike · 15 years ago
- 38f1231 strings and bytes.Split: make count of 0 mean 0, not infinite. by Rob Pike · 15 years ago
- 0bf413a bytes, strings: add Replace by Russ Cox · 15 years ago
- 44ca04d big, bytes: move assembly externs to separate file by Russ Cox · 15 years ago