aboutsummaryrefslogtreecommitdiff
path: root/src/pkg/strings
AgeCommit message (Expand)Author
2014-09-08build: move package sources from src/pkg to srcRuss Cox
2014-09-01strings: use Rabin-Karp algorithm for LastIndex.Rui Ueyama
2014-08-25strings, bytes: document behavior of Replace when old is emptyCaleb Spare
2014-07-17strings: remove byteBitmapRui Ueyama
2014-06-28strings: Replacer is safe for concurrent useEvan Shaw
2014-06-26strings: avoid pointless slice growth in makeBenchInputHardJosh Bleecher Snyder
2014-06-25strings: additional testsDave Cheney
2014-06-22undo CL 101330053 / c19c9a063fe8Rui Ueyama
2014-06-21strings: use sync.Pool to cache bufferRui Ueyama
2014-06-20strings: speed up byteReplacer.ReplaceRui Ueyama
2014-06-19strings: define byteBitmap.isSetRui Ueyama
2014-06-19strings: reduce allocation in byteStringReplacer.WriteStringRui Ueyama
2014-06-17strings: add fast path to ReplaceRui Ueyama
2014-06-11bytes, strings: optimize RepeatRui Ueyama
2014-04-25net/http, strings, bytes: fix http race, revert part of Reader behavior changeBrad Fitzpatrick
2014-04-21strings: fix off-by-one error in testgo1.3beta1Rui Ueyama
2014-04-10bytes, strings: more consistent error messagesRobert Griesemer
2014-04-10bytes, strings: add Reader.ReadAt race testsBrad Fitzpatrick
2014-03-28bytes, strings: allow Reader.Seek past 1<<31Brad Fitzpatrick
2014-03-23strings: minor cleanupRui Ueyama
2014-03-19strings, bytes: ReadAt should not mutate receiverRui Ueyama
2014-03-19strings, bytes: fix Reader.UnreadRuneRui Ueyama
2013-12-20bytes, strings: improve Title test coverage by adding cases with underscore a...Shawn Smith
2013-12-16strings: Add example function for IndexAnyDaniel Lidén
2013-12-16strings: Add IndexFunc exampleRobin Eklind
2013-12-16strings: Update Trim example.Robin Eklind
2013-12-16strings: Add FieldsFunc example.Robin Eklind
2013-10-24strings: fix Replacer bug with prefix matchesBrad Fitzpatrick
2013-08-27bytes, strings: use copy in RepeatEvan Shaw
2013-08-09strings: add test for CountPieter Droogendijk
2013-08-06strings: add IndexByte benchmarkBrad Fitzpatrick
2013-08-05strings: use runtime assembly for IndexByteBrad Fitzpatrick
2013-08-01strings: add IndexByte, for consistency with bytes packageBrad Fitzpatrick
2013-03-19bytes,strings: remove user name from BUG in commentRob Pike
2013-03-15bytes,string: move the BUG to the comment of the function it's aboutRob Pike
2013-03-06strings: remove allocations in Split(s, "")Ewan Chou
2013-02-28all: fix a few more printf arg bugs found by go vetRob Pike
2013-02-20bufio: new Scanner interfaceRob Pike
2013-02-19strings: faster Count, IndexDonovan Hide
2013-02-17strings: better mean complexity for Count and Index.Rémy Oudompheng
2013-02-01bytes, strings: add TrimPrefix and TrimSuffixBrad Fitzpatrick
2012-11-25bytes, strings: fix Reader WriteTo return value on 0 bytes copiedBrad Fitzpatrick
2012-10-30gofmt: apply gofmt -w src miscRobert Griesemer
2012-10-12bytes, strings: add (*Reader).WriteToEvan Shaw
2012-09-28strings: implement a faster single-string ReplacerEric Roshan-Eisner
2012-09-18bytes, strings: add Fields benchmarksRuss Cox
2012-09-17strings: implement a faster generic ReplacerEric Eisner
2012-09-12strings: fix NewReplacer(old0, new0, old1, new1, ...) to be consistentNigel Tao
2012-09-11strings: more thorough Replacer tests.Nigel Tao
2012-05-22go/parser: fix comment grouping (day 1 bug)Robert Griesemer