mirror of
https://github.com/golang/go
synced 2024-11-18 15:24:41 -07:00
60ce95d7a1
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 |
||
---|---|---|
.. | ||
array.go | ||
chan1.go | ||
chan.go | ||
embed.go | ||
for.go | ||
interbasic.go | ||
interfun.go | ||
intervar.go | ||
label.go | ||
litfun.go | ||
mfunc.go | ||
ptrfun.go | ||
ptrvar.go | ||
range.go | ||
rob1.go | ||
rob2.go | ||
robfor.go | ||
robfunc.go | ||
robif.go | ||
shift.go | ||
simparray.go | ||
simpbool.go | ||
simpconv.go | ||
simpfun.go | ||
simpprint.go | ||
simpswitch.go | ||
simpvar.go | ||
string.go | ||
strvar.go |