aboutsummaryrefslogtreecommitdiff
path: root/src/pkg/bytes/bytes_test.go
AgeCommit message (Expand)Author
2014-09-08build: move package sources from src/pkg to srcRuss Cox
2014-06-11bytes, strings: optimize RepeatRui Ueyama
2014-05-10bytes: fix typosRui Ueyama
2014-03-18bytes: fix panic in MapRui Ueyama
2013-12-28bytes: add test for ContainsShawn Smith
2013-12-20bytes, strings: improve Title test coverage by adding cases with underscore a...Shawn Smith
2013-09-11bytes: additional test coverageDave Cheney
2013-05-14runtime/bytes: fast Compare for byte arrays and strings.Keith Randall
2013-04-02runtime: Implement faster equals for strings and bytes.Keith Randall
2013-02-07bytes: minor optimization to lastIndexFuncBrad Fitzpatrick
2013-02-01bytes, strings: add TrimPrefix and TrimSuffixBrad Fitzpatrick
2013-01-07bytes: fix docs: s/array/slice/.Nigel Tao
2012-10-30gofmt: apply gofmt -w src miscRobert Griesemer
2012-09-18bytes, strings: add Fields benchmarksRuss Cox
2012-07-20bytes: make Join return a new buffer on len(a) == 1Gustavo Niemeyer
2012-02-18bytes: document Compare/Equal semantics for nil arguments, and add tests.David Symonds
2011-12-20panics: use the new facilities of testing.B insteadRob Pike
2011-12-07bytes: faster Count, Index, EqualRuss Cox
2011-11-28bytes: fix test outputChristopher Wedgwood
2011-11-13various: avoid func compareRuss Cox
2011-11-08renaming_2: gofix -r go1pkgrename src/pkg/[a-l]*Rob Pike
2011-10-25bytes, strings: use runeRuss Cox
2011-10-12updates: append(y,[]byte(z)...) -> append(y,z...)"Christopher Wedgwood
2011-09-26bytes: add EqualFoldRuss Cox
2011-09-21bytes: fix Replace so it actually copiesGustavo Niemeyer
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-03-25testing: shorten some tests.Rob Pike
2010-12-01Removed bytes.Add and bytes.AddByte; we now have 'append'.Kyle Consalus
2010-11-12strings: add LastIndexAnyBenny Siegert
2010-11-08bytes: SSE for bytes.IndexByte on amd64Evan Shaw
2010-10-26use copyRuss Cox
2010-10-22gofmt -s -w src miscRobert Griesemer
2010-08-05bytes: add IndexRune, FieldsFunc and To*SpecialChristian Himpel
2010-08-04bytes: added test case for explode with blank string.Scott Lawrence
2010-07-23bytes: port IndexFunc and LastIndexFunc from strings packageFazlul Shahriar
2010-07-20bytes: 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-05-18bytes: add Trim, TrimLeft, TrimRight, and generic functionsMichael Hoisie
2010-05-03bytes: Change IndexAny to look for UTF-8 encoded characters.Rob Pike
2010-03-30single argument panicRuss Cox
2010-03-26bytes, strings: IndexOfAnyRobert Griesemer
2010-02-25strings: delete Runes, BytesRuss Cox
2010-02-17apply gofmt to src and miscRobert Griesemer
2009-12-15bytes, strings: add new function FieldsAndrey Mirtchovski
2009-12-15 1) Change default gofmt default settings forRobert Griesemer
2009-12-11bytes, strings: allow -1 in Map to mean "drop this character".Kei Son
2009-12-04bytes: asm for bytes.IndexByteRuss Cox
2009-12-02Runes: turn string into []intPeter Froehlich