mirror of https://github.com/golang/go.git
as a reminder, the old conversion was that you could write var arr [10]byte; var slice []byte; slice = arr; but now you have to write slice = &arr; the change eliminates an implicit &, so that the only implicit &s left are in the . operator and in string(arr). also, removed utf8.EncodeRuneToString in favor of string(rune). R=r DELTA=83 (1 added, 23 deleted, 59 changed) OCL=27531 CL=27534 |
||
|---|---|---|
| .. | ||
| cat.go | ||
| cat_rot13.go | ||
| echo.go | ||
| file.go | ||
| helloworld.go | ||
| helloworld3.go | ||
| print.go | ||
| print_string.go | ||
| run | ||
| server.go | ||
| server1.go | ||
| sieve.go | ||
| sieve1.go | ||
| sort.go | ||
| sortmain.go | ||
| strings.go | ||
| sum.go | ||