summaryrefslogtreecommitdiff
path: root/src/pkg/strings
AgeCommit message (Collapse)AuthorFilesLines
2009-08-31rearrange some constants. unicode package now defines MaxRune and ↵Rob Pike1-2/+3
ReplacementChar. utf8 package imports unicode to get those definitions. regenerate dependencies. R=rsc DELTA=41 (19 added, 3 deleted, 19 changed) OCL=34123 CL=34129
2009-08-12convert non-low-level non-google pkg codeRuss Cox2-54/+4
to whole-package compilation. R=r OCL=33070 CL=33101
2009-06-29io.StringBytes -> strings.BytesRuss Cox1-0/+10
io.ByteBuffer -> bytes.Buffer left io.ByteBuffer stub around for now, for protocol compiler. R=r OCL=30861 CL=30872
2009-06-24style police: parens in if, for, switch, rangeRuss Cox1-2/+2
R=r DELTA=32 (0 added, 3 deleted, 29 changed) OCL=30718 CL=30725
2009-06-24Change strings.Split, bytes.Split to take a maximum substring count argument.David Symonds2-35/+51
R=rsc APPROVED=r DELTA=131 (39 added, 10 deleted, 82 changed) OCL=30669 CL=30723
2009-06-09Basic HTTP client.Steve Newman2-0/+70
R=rsc APPROVED=rsc DELTA=392 (386 added, 2 deleted, 4 changed) OCL=29963 CL=30107
2009-06-09mv src/lib to src/pkgRob Pike3-0/+371
tests: all.bash passes, gobuild still works, godoc still works. R=rsc OCL=30096 CL=30102