aboutsummaryrefslogtreecommitdiff
path: root/src/pkg/strings
AgeCommit message (Expand)Author
2012-03-05strings: Rename example to match function name.Volker Dobler
2012-02-27strings: make Count example show resultsRobert Griesemer
2012-02-16godoc: make example code more readable with new comment conventionAndrew Gerrand
2012-02-15strings: add Bernardo O'Higgins exampleAndrew Gerrand
2012-02-15bytes,strings: make *Reader implement io.ReaderAtBrad Fitzpatrick
2012-02-13strings: more examplesBrad Fitzpatrick
2012-02-10strings: delete method comments implied by interface satisfactionRob Pike
2012-02-09strings: add Seek method to ReaderBrad Fitzpatrick
2012-02-03strings: add Fields exampleBrad Fitzpatrick
2012-01-30build: remove Make.pkg, Make.toolRuss 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-03all: rename os.EOF to io.EOF in various non-code contextsVincent Vanackere
2011-11-01src/pkg/[n-z]*: gofix -r error -force=errorRuss Cox
2011-10-25bytes, strings: use runeRuss Cox
2011-10-03strings: implement a faster byte->string ReplacerBrad Fitzpatrick
2011-10-03strings: implement a faster byte->byte ReplacerBrad Fitzpatrick
2011-09-28strings: add Replacer, NewReplacerBrad Fitzpatrick
2011-09-26bytes: add EqualFoldRuss 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-06-22os.Error API: don't export os.ErrorString, use os.NewError consistentlyRobert Griesemer
2011-05-31http: have client set Content-Length when possibleBrad Fitzpatrick
2011-05-26strings: implement UnreadByte, UnreadRuneRobert Griesemer
2011-05-15strings: make Reader.Read use copy instead of an explicit loop.Nigel Tao
2011-04-20src/pkg: make package doc comments consistently start with "Package foo".Nigel Tao
2011-03-29bytes, strings: simplify JoinEvan Shaw
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
2011-01-04strings: fix description of FieldsFuncRoger Peppe
2010-11-30utf8: make EncodeRune's destination the first argument.Adam Langley
2010-11-12strings: add LastIndexAnyBenny Siegert
2010-11-01strings: ContainsBrad Fitzpatrick
2010-10-26use copyRuss Cox
2010-10-22gofmt -s -w src miscRobert Griesemer
2010-09-23bytes, strings: change lastIndexFunc to use DecodeLastRuneRoger Peppe
2010-09-21strings: fix minor bug in LastIndexFuncRoger Peppe
2010-08-18build: no required environment variablesRuss Cox
2010-08-05bytes: add IndexRune, FieldsFunc and To*SpecialChristian Himpel
2010-08-03strings: fix Split("", "", -1)Scott Lawrence
2010-07-27bytes, strings: mention the n < 0 case in Split/SplitAfter doc commentAndrew Gerrand
2010-07-23bytes: port IndexFunc and LastIndexFunc from strings packageFazlul Shahriar
2010-07-20strings: add TitleRob Pike