summaryrefslogtreecommitdiff
path: root/src/pkg/strings
Commit message (Expand)AuthorAgeFilesLines
* all: rename os.EOF to io.EOF in various non-code contextsVincent Vanackere2011-11-031-1/+1
* src/pkg/[n-z]*: gofix -r error -force=errorRuss Cox2011-11-013-25/+23
* bytes, strings: use runeRuss Cox2011-10-254-91/+92
* strings: implement a faster byte->string ReplacerBrad Fitzpatrick2011-10-032-3/+139
* strings: implement a faster byte->byte ReplacerBrad Fitzpatrick2011-10-033-37/+240
* strings: add Replacer, NewReplacerBrad Fitzpatrick2011-09-283-0/+160
* bytes: add EqualFoldRuss Cox2011-09-261-1/+2
* strings: add EqualFoldRuss Cox2011-09-262-49/+112
* go/printer: changed max. number of newlines from 3 to 2Robert Griesemer2011-07-143-4/+0
* strings.Split: make the default to split all.Rob Pike2011-06-282-11/+37
* os.Error API: don't export os.ErrorString, use os.NewError consistentlyRobert Griesemer2011-06-221-2/+2
* http: have client set Content-Length when possibleBrad Fitzpatrick2011-05-311-0/+6
* strings: implement UnreadByte, UnreadRuneRobert Griesemer2011-05-262-20/+111
* strings: make Reader.Read use copy instead of an explicit loop.Nigel Tao2011-05-151-4/+1
* src/pkg: make package doc comments consistently start with "Package foo".Nigel Tao2011-04-201-1/+1
* bytes, strings: simplify JoinEvan Shaw2011-03-291-14/+4
* strings: Map: avoid allocation when string is unchangedBrad Fitzpatrick2011-03-282-2/+37
* testing: shorten some tests.Rob Pike2011-03-251-3/+7
* strings: better benchmark names; add BenchmarkIndexBrad Fitzpatrick2011-03-081-5/+17
* strings: add IndexRune tests, ASCII fast pathBrad Fitzpatrick2011-03-082-3/+53
* strings: fix description of FieldsFuncRoger Peppe2011-01-041-2/+2
* utf8: make EncodeRune's destination the first argument.Adam Langley2010-11-301-1/+1
* strings: add LastIndexAnyBenny Siegert2010-11-122-3/+35
* strings: ContainsBrad Fitzpatrick2010-11-012-0/+26
* use copyRuss Cox2010-10-261-14/+3
* gofmt -s -w src miscRobert Griesemer2010-10-221-197/+197
* bytes, strings: change lastIndexFunc to use DecodeLastRuneRoger Peppe2010-09-231-26/+4
* strings: fix minor bug in LastIndexFuncRoger Peppe2010-09-212-1/+2
* build: no required environment variablesRuss Cox2010-08-181-1/+1
* bytes: add IndexRune, FieldsFunc and To*SpecialChristian Himpel2010-08-051-1/+1
* strings: fix Split("", "", -1)Scott Lawrence2010-08-032-2/+5
* bytes, strings: mention the n < 0 case in Split/SplitAfter doc commentAndrew Gerrand2010-07-271-8/+14
* bytes: port IndexFunc and LastIndexFunc from strings packageFazlul Shahriar2010-07-232-36/+8
* strings: add TitleRob Pike2010-07-202-0/+68
* strings and bytes.Split: make count of 0 mean 0, not infinite.Rob Pike2010-07-012-36/+49
* bytes, strings: add ReplaceRuss Cox2010-06-302-0/+84
* Add IndexFunc and LastIndexFunc.Roger Peppe2010-06-142-36/+187
* Conversion from loop to copy().Kyle Consalus2010-05-051-3/+1
* strings: add ReadRune to ReaderKyle Consalus2010-04-202-2/+48
* Added strings.FieldsFunc, a generalization of strings.Fields in style of the ...Kyle Consalus2010-04-192-2/+25
* strings: add IndexRune, Trim, TrimLeft, TrimRight, and the generic equivalent...Michael Hoisie2010-04-092-11/+139
* Unicode: provide an ability to supplement the case-mapping tablesRob Pike2010-03-302-0/+40
* strings.FIelds: slight simplification.Rob Pike2010-03-291-4/+5
* bytes, strings: IndexOfAnyRobert Griesemer2010-03-262-3/+31
* strings: make Split(s, "", n) fasterSpring Mc2010-03-041-17/+24
* strings: delete Runes, BytesRuss Cox2010-02-252-23/+3
* strings: remove a couple of redundant testsRobert Griesemer2010-02-251-2/+4
* bytes, strings: add new function FieldsAndrey Mirtchovski2009-12-152-0/+64
* 1) Change default gofmt default settings forRobert Griesemer2009-12-153-172/+172
* bytes, strings: allow -1 in Map to mean "drop this character".Kei Son2009-12-112-13/+29