aboutsummaryrefslogtreecommitdiff
path: root/src/pkg/strings/strings_test.go
AgeCommit message (Expand)Author
2014-04-21strings: fix off-by-one error in testgo1.3beta1Rui 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-08-09strings: add test for CountPieter Droogendijk
2013-08-06strings: add IndexByte benchmarkBrad Fitzpatrick
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-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-10-30gofmt: apply gofmt -w src miscRobert Griesemer
2012-09-18bytes, strings: add Fields benchmarksRuss Cox
2011-12-20panics: use the new facilities of testing.B insteadRob Pike
2011-12-08update tree for new default type ruleRuss Cox
2011-11-28strings: fix test outputChristopher Wedgwood
2011-11-23strings: Add ContainsAny and ContainsRune to correspond to IndexAny etc.Scott Lawrence
2011-11-13various: avoid func compareRuss Cox
2011-11-08renaming_3: gofix -r go1pkgrename src/pkg/[m-z]*Rob Pike
2011-11-01src/pkg/[n-z]*: gofix -r error -force=errorRuss Cox
2011-10-25bytes, strings: use runeRuss Cox
2011-09-26strings: add EqualFoldRuss Cox
2011-07-14go/printer: changed max. number of newlines from 3 to 2Robert Griesemer
2011-06-28strings.Split: make the default to split all.Rob Pike
2011-05-26strings: implement UnreadByte, UnreadRuneRobert Griesemer
2011-03-28strings: Map: avoid allocation when string is unchangedBrad Fitzpatrick
2011-03-25testing: shorten some tests.Rob Pike
2011-03-08strings: better benchmark names; add BenchmarkIndexBrad Fitzpatrick
2011-03-08strings: add IndexRune tests, ASCII fast pathBrad Fitzpatrick
2010-11-12strings: add LastIndexAnyBenny Siegert
2010-11-01strings: ContainsBrad Fitzpatrick
2010-10-22gofmt -s -w src miscRobert Griesemer
2010-09-21strings: fix minor bug in LastIndexFuncRoger Peppe
2010-08-03strings: fix Split("", "", -1)Scott Lawrence
2010-07-23bytes: port IndexFunc and LastIndexFunc from strings packageFazlul Shahriar
2010-07-20strings: add TitleRob Pike
2010-07-01strings and bytes.Split: make count of 0 mean 0, not infinite.Rob Pike
2010-06-30bytes, strings: add ReplaceRuss Cox
2010-06-14Add IndexFunc and LastIndexFunc.Roger Peppe
2010-04-20strings: add ReadRune to ReaderKyle Consalus
2010-04-19Added strings.FieldsFunc, a generalization of strings.Fields in style of the ...Kyle Consalus
2010-04-09strings: add IndexRune, Trim, TrimLeft, TrimRight, and the generic equivalent...Michael Hoisie
2010-03-30Unicode: provide an ability to supplement the case-mapping tablesRob Pike
2010-03-26bytes, strings: IndexOfAnyRobert Griesemer
2010-02-25strings: delete Runes, BytesRuss Cox
2009-12-15bytes, strings: add new function FieldsAndrey Mirtchovski
2009-12-151) Change default gofmt default settings forRobert Griesemer
2009-12-11bytes, strings: allow -1 in Map to mean "drop this character".Kei Son
2009-12-02Runes: turn string into []intPeter Froehlich
2009-11-18add bytes.IndexByte; common case we can make fast later.Rob Pike