index
:
go
bench-before
fix-runtime-test-GOMAXPROCS
json-isValidNumber
json-isValidNumber-before
main
makepkg
ms-fix-multipart-readform
Fork of Go programming language with my patches.
Go Authors
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
/
pkg
/
bytes
/
buffer.go
Age
Commit message (
Expand
)
Author
2009-12-07
Remove copyBytes completely in favor of copy.
Christopher Wedgwood
2009-12-06
Make printing faster by avoiding mallocs and some other advances.
Rob Pike
2009-12-04
avoid an allocation inside bytes.Buffer by providing a static array.
Rob Pike
2009-12-03
Add ReadFrom and WriteTo methods to bytes.Buffer, to enable i/o without buffe...
Rob Pike
2009-11-20
gofmt -r 'α[β:len(α)] -> α[β:]' -w src/cmd src/pkg
Russ Cox
2009-11-18
remove bytes.Copy
Rob Pike
2009-11-09
- replaced gofmt expression formatting algorithm with
Robert Griesemer
2009-11-09
remove semis after statements in one-statement statement lists
Robert Griesemer
2009-11-06
- fine-tuning of one-line func heuristic (nodes.go)
Robert Griesemer
2009-11-04
gofmt-ify bytes
Robert Griesemer
2009-10-31
return "<nil>" when calling String() on a nil bytes.Buffer.
Rob Pike
2009-10-08
more lgtm files from gofmt
Russ Cox
2009-09-22
restore the old algorithm. the new one is more memory efficient in large cases
Rob Pike
2009-09-21
move strings.Buffer into bytes
Rob Pike
2009-09-16
rename bytes.Buffer.Data() to bytes.Buffer.Bytes()
Rob Pike
2009-08-12
convert low-level (used by testing) packages to
Russ Cox
2009-06-29
io.StringBytes -> strings.Bytes
Russ Cox