| Commit message (Expand) | Author | Age | Files | Lines |
* | bytes.Buffer: fix typo in comment (doubled 'to') | Rob Pike | 2011-01-14 | 1 | -1/+1 |
* | bytes: fix TrimSpace typo | Peter Mundy | 2011-01-09 | 1 | -1/+1 |
* | bytes.Buffer: Fix bug in UnreadByte. | Rob Pike | 2011-01-07 | 1 | -1/+1 |
* | throughout: fix broken calls to Printf etc. | Rob Pike | 2010-12-07 | 1 | -1/+1 |
* | use the new %U format for runes | Rob Pike | 2010-12-06 | 1 | -5/+5 |
* | bytes: add Buffer.UnreadRune, Buffer.UnreadByte | Roger Peppe | 2010-12-06 | 2 | -4/+80 |
* | Removed bytes.Add and bytes.AddByte; we now have 'append'. | Kyle Consalus | 2010-12-01 | 2 | -81/+0 |
* | utf8: make EncodeRune's destination the first argument. | Adam Langley | 2010-11-30 | 3 | -4/+4 |
* | strings: add LastIndexAny | Benny Siegert | 2010-11-12 | 2 | -6/+44 |
* | bytes: SSE for bytes.IndexByte on amd64 | Evan Shaw | 2010-11-08 | 2 | -9/+137 |
* | use append | Russ Cox | 2010-10-27 | 1 | -2/+2 |
* | use copy | Russ Cox | 2010-10-26 | 4 | -37/+12 |
* | gofmt -s -w src misc | Robert Griesemer | 2010-10-22 | 1 | -216/+216 |
* | bytes: fix typo in AddByte comment | Andrew Gerrand | 2010-09-27 | 1 | -1/+1 |
* | bytes, strings: change lastIndexFunc to use DecodeLastRune | Roger Peppe | 2010-09-23 | 1 | -26/+4 |
* | tests: fix prints | Rob Pike | 2010-09-23 | 1 | -16/+16 |
* | build: no required environment variables | Russ Cox | 2010-08-18 | 1 | -1/+1 |
* | bytes: add IndexRune, FieldsFunc and To*Special | Christian Himpel | 2010-08-05 | 2 | -4/+82 |
* | bytes: added test case for explode with blank string. | Scott Lawrence | 2010-08-04 | 1 | -0/+1 |
* | bytes, strings: mention the n < 0 case in Split/SplitAfter doc comment | Andrew Gerrand | 2010-07-27 | 1 | -9/+14 |
* | bytes: port IndexFunc and LastIndexFunc from strings package | Fazlul Shahriar | 2010-07-23 | 2 | -41/+169 |
* | strings.Bytes: fix typo in comment | Andrey Mirtchovski | 2010-07-21 | 1 | -1/+1 |
* | bytes: add Title | Rob Pike | 2010-07-20 | 2 | -0/+68 |
* | strings and bytes.Split: make count of 0 mean 0, not infinite. | Rob Pike | 2010-07-01 | 2 | -34/+46 |
* | bytes, strings: add Replace | Russ Cox | 2010-06-30 | 2 | -0/+69 |
* | big, bytes: move assembly externs to separate file | Russ Cox | 2010-06-21 | 3 | -3/+9 |
* | bytes.Buffer.ReadFrom: fix bug. | Rob Pike | 2010-06-15 | 1 | -1/+1 |
* | changes &x -> x[0:] for array to slice conversion | Russ Cox | 2010-05-27 | 1 | -2/+2 |
* | bytes: add Trim, TrimLeft, TrimRight, and generic functions | Michael Hoisie | 2010-05-18 | 2 | -20/+134 |
* | bytes: Change IndexAny to look for UTF-8 encoded characters. | Rob Pike | 2010-05-03 | 2 | -16/+41 |
* | bytes: add Next method to Buffer, simplify Read. | Russ Cox | 2010-04-26 | 2 | -6/+47 |
* | bytes: shuffle implementation, making WriteByte 50% faster | Russ Cox | 2010-04-14 | 1 | -37/+27 |
* | single argument panic | Russ Cox | 2010-03-30 | 1 | -1/+2 |
* | bytes, strings: IndexOfAny | Robert Griesemer | 2010-03-26 | 2 | -16/+69 |
* | bufio: WriteRune | Rob Pike | 2010-03-05 | 1 | -1/+1 |
* | Add ReadRune and WriteRune to bytes.Buffer | Rob Pike | 2010-03-05 | 2 | -6/+77 |
* | strings: delete Runes, Bytes | Russ Cox | 2010-02-25 | 1 | -15/+14 |
* | apply gofmt to src and misc | Robert Griesemer | 2010-02-17 | 1 | -1/+1 |
* | in C and asm, replace pkg?name with ?name | Russ Cox | 2010-01-25 | 3 | -4/+4 |
* | Remove redundant size check in resize. Let callers worry about that and resiz... | Yongjian Xu | 2010-01-02 | 1 | -5/+2 |
* | new comments for bytes.NewBuffer and NewBufferString. | Rob Pike | 2009-12-19 | 1 | -8/+12 |
* | bytes, strings: add new function Fields | Andrey Mirtchovski | 2009-12-15 | 2 | -0/+68 |
* | 1) Change default gofmt default settings for | Robert Griesemer | 2009-12-15 | 4 | -348/+348 |
* | When the buffer is empty, reset b.off to the beginning of the buffer | Rob Pike | 2009-12-14 | 1 | -2/+20 |
* | bytes, strings: allow -1 in Map to mean "drop this character". | Kei Son | 2009-12-11 | 2 | -9/+25 |
* | Remove copyBytes completely in favor of copy. | Christopher Wedgwood | 2009-12-07 | 1 | -11/+2 |
* | Make printing faster by avoiding mallocs and some other advances. | Rob Pike | 2009-12-06 | 1 | -37/+37 |
* | bytes: asm for bytes.IndexByte | Russ Cox | 2009-12-04 | 7 | -1/+96 |
* | avoid an allocation inside bytes.Buffer by providing a static array. | Rob Pike | 2009-12-04 | 1 | -8/+4 |
* | Add ReadFrom and WriteTo methods to bytes.Buffer, to enable i/o without buffe... | Rob Pike | 2009-12-03 | 2 | -0/+77 |