aboutsummaryrefslogtreecommitdiff
path: root/src/pkg/bytes/buffer.go
AgeCommit message (Expand)Author
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-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-11-20gofmt -r 'α[β:len(α)] -> α[β:]' -w src/cmd src/pkgRuss Cox
2009-11-18remove bytes.CopyRob Pike
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-10-31return "<nil>" when calling String() on a nil bytes.Buffer.Rob Pike
2009-10-08more lgtm files from gofmtRuss Cox
2009-09-22restore the old algorithm. the new one is more memory efficient in large casesRob Pike
2009-09-21move strings.Buffer into bytesRob Pike
2009-09-16rename bytes.Buffer.Data() to bytes.Buffer.Bytes()Rob Pike
2009-08-12convert low-level (used by testing) packages toRuss Cox
2009-06-29io.StringBytes -> strings.BytesRuss Cox