summaryrefslogtreecommitdiff
path: root/src/pkg/bytes
Commit message (Expand)AuthorAgeFilesLines
* bytes.Buffer: fix typo in comment (doubled 'to')Rob Pike2011-01-141-1/+1
* bytes: fix TrimSpace typoPeter Mundy2011-01-091-1/+1
* bytes.Buffer: Fix bug in UnreadByte.Rob Pike2011-01-071-1/+1
* throughout: fix broken calls to Printf etc.Rob Pike2010-12-071-1/+1
* use the new %U format for runesRob Pike2010-12-061-5/+5
* bytes: add Buffer.UnreadRune, Buffer.UnreadByteRoger Peppe2010-12-062-4/+80
* Removed bytes.Add and bytes.AddByte; we now have 'append'.Kyle Consalus2010-12-012-81/+0
* utf8: make EncodeRune's destination the first argument.Adam Langley2010-11-303-4/+4
* strings: add LastIndexAnyBenny Siegert2010-11-122-6/+44
* bytes: SSE for bytes.IndexByte on amd64Evan Shaw2010-11-082-9/+137
* use appendRuss Cox2010-10-271-2/+2
* use copyRuss Cox2010-10-264-37/+12
* gofmt -s -w src miscRobert Griesemer2010-10-221-216/+216
* bytes: fix typo in AddByte commentAndrew Gerrand2010-09-271-1/+1
* bytes, strings: change lastIndexFunc to use DecodeLastRuneRoger Peppe2010-09-231-26/+4
* tests: fix printsRob Pike2010-09-231-16/+16
* build: no required environment variablesRuss Cox2010-08-181-1/+1
* bytes: add IndexRune, FieldsFunc and To*SpecialChristian Himpel2010-08-052-4/+82
* bytes: added test case for explode with blank string.Scott Lawrence2010-08-041-0/+1
* bytes, strings: mention the n < 0 case in Split/SplitAfter doc commentAndrew Gerrand2010-07-271-9/+14
* bytes: port IndexFunc and LastIndexFunc from strings packageFazlul Shahriar2010-07-232-41/+169
* strings.Bytes: fix typo in commentAndrey Mirtchovski2010-07-211-1/+1
* bytes: add TitleRob Pike2010-07-202-0/+68
* strings and bytes.Split: make count of 0 mean 0, not infinite.Rob Pike2010-07-012-34/+46
* bytes, strings: add ReplaceRuss Cox2010-06-302-0/+69
* big, bytes: move assembly externs to separate fileRuss Cox2010-06-213-3/+9
* bytes.Buffer.ReadFrom: fix bug.Rob Pike2010-06-151-1/+1
* changes &x -> x[0:] for array to slice conversionRuss Cox2010-05-271-2/+2
* bytes: add Trim, TrimLeft, TrimRight, and generic functionsMichael Hoisie2010-05-182-20/+134
* bytes: Change IndexAny to look for UTF-8 encoded characters.Rob Pike2010-05-032-16/+41
* bytes: add Next method to Buffer, simplify Read.Russ Cox2010-04-262-6/+47
* bytes: shuffle implementation, making WriteByte 50% fasterRuss Cox2010-04-141-37/+27
* single argument panicRuss Cox2010-03-301-1/+2
* bytes, strings: IndexOfAnyRobert Griesemer2010-03-262-16/+69
* bufio: WriteRuneRob Pike2010-03-051-1/+1
* Add ReadRune and WriteRune to bytes.BufferRob Pike2010-03-052-6/+77
* strings: delete Runes, BytesRuss Cox2010-02-251-15/+14
* apply gofmt to src and miscRobert Griesemer2010-02-171-1/+1
* in C and asm, replace pkg?name with ?nameRuss Cox2010-01-253-4/+4
* Remove redundant size check in resize. Let callers worry about that and resiz...Yongjian Xu2010-01-021-5/+2
* new comments for bytes.NewBuffer and NewBufferString.Rob Pike2009-12-191-8/+12
* bytes, strings: add new function FieldsAndrey Mirtchovski2009-12-152-0/+68
* 1) Change default gofmt default settings forRobert Griesemer2009-12-154-348/+348
* When the buffer is empty, reset b.off to the beginning of the bufferRob Pike2009-12-141-2/+20
* bytes, strings: allow -1 in Map to mean "drop this character".Kei Son2009-12-112-9/+25
* Remove copyBytes completely in favor of copy.Christopher Wedgwood2009-12-071-11/+2
* Make printing faster by avoiding mallocs and some other advances.Rob Pike2009-12-061-37/+37
* bytes: asm for bytes.IndexByteRuss Cox2009-12-047-1/+96
* avoid an allocation inside bytes.Buffer by providing a static array.Rob Pike2009-12-041-8/+4
* Add ReadFrom and WriteTo methods to bytes.Buffer, to enable i/o without buffe...Rob Pike2009-12-032-0/+77