| commit | 60ce95d7a1677d98ca098a3657e00d71b6021a30 | [log] [tgz] |
|---|---|---|
| author | Russ Cox <rsc@golang.org> | Wed Apr 15 20:27:45 2009 -0700 |
| committer | Russ Cox <rsc@golang.org> | Wed Apr 15 20:27:45 2009 -0700 |
| tree | 16cfcc3cc7d82aa01da1b152e520297da5afc88a | |
| parent | 65d397f747f565cbea57dd40f4f838bbab803243 [diff] |
code changes for array conversion. 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