aboutsummaryrefslogtreecommitdiff
path: root/src/pkg/bytes
AgeCommit message (Expand)Author
2010-09-27bytes: fix typo in AddByte commentAndrew Gerrand
2010-09-23bytes, strings: change lastIndexFunc to use DecodeLastRuneRoger Peppe
2010-09-23tests: fix printsRob Pike
2010-08-18build: no required environment variablesRuss Cox
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-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-21strings.Bytes: fix typo in commentAndrey Mirtchovski
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-06-21big, bytes: move assembly externs to separate fileRuss Cox
2010-06-15bytes.Buffer.ReadFrom: fix bug.Rob Pike
2010-05-27changes &x -> x[0:] for array to slice conversionRuss 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-04-26bytes: add Next method to Buffer, simplify Read.Russ Cox
2010-04-14bytes: shuffle implementation, making WriteByte 50% fasterRuss Cox
2010-03-30single argument panicRuss Cox
2010-03-26bytes, strings: IndexOfAnyRobert Griesemer
2010-03-05bufio: WriteRuneRob Pike
2010-03-05Add ReadRune and WriteRune to bytes.BufferRob Pike
2010-02-25strings: delete Runes, BytesRuss Cox
2010-02-17apply gofmt to src and miscRobert Griesemer
2010-01-25in C and asm, replace pkg·name with ·nameRuss Cox
2010-01-02Remove redundant size check in resize. Let callers worry about that and resiz...Yongjian Xu
2009-12-19new comments for bytes.NewBuffer and NewBufferString.Rob Pike
2009-12-15bytes, strings: add new function FieldsAndrey Mirtchovski
2009-12-15 1) Change default gofmt default settings forRobert Griesemer
2009-12-14When the buffer is empty, reset b.off to the beginning of the bufferRob Pike
2009-12-11bytes, strings: allow -1 in Map to mean "drop this character".Kei Son
2009-12-07Remove copyBytes completely in favor of copy.Christopher Wedgwood
2009-12-06Make printing faster by avoiding mallocs and some other advances.Rob Pike
2009-12-04bytes: asm for bytes.IndexByteRuss Cox
2009-12-04avoid an allocation inside bytes.Buffer by providing a static array.Rob Pike
2009-12-03Add ReadFrom and WriteTo methods to bytes.Buffer, to enable i/o without buffe...Rob Pike
2009-12-02Runes: turn string into []intPeter Froehlich
2009-11-23go: makes it build for the case $GOROOT has whitespacesSergio Luis O. B. Correia
2009-11-20gofmt -r 'α[β:len(α)] -> α[β:]' -w src/cmd src/pkgRuss Cox
2009-11-18add bytes.IndexByte; common case we can make fast later.Rob Pike
2009-11-18remove bytes.CopyRob Pike
2009-11-16 An asked-for-in #go-nuts extension to quickly create a repeatedDavid G. Andersen
2009-11-15fix bug in bytes.Map and add test cases for Map in both strings and bytes pac...Rob Pike
2009-11-10minor adjustments to package comments for better synopsis.Robert Griesemer
2009-11-09- replaced gofmt expression formatting algorithm withRobert Griesemer
2009-11-09remove semis after statements in one-statement statement listsRobert Griesemer
2009-11-06- fine-tuning of one-line func heuristic (nodes.go)Robert Griesemer
2009-11-04gofmt-ify bytesRobert Griesemer
2009-11-04bytes.SplitAfter and strings.SplitAfterRuss Cox