Find a file
Russ Cox 60ce95d7a1 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
2009-04-15 20:27:45 -07:00
doc code changes for array conversion. 2009-04-15 20:27:45 -07:00
include libmach: 2009-02-03 15:00:09 -08:00
lib help management of empty pkg and lib directories in perforce 2008-07-21 17:10:49 -07:00
pkg help management of empty pkg and lib directories in perforce 2008-07-21 17:10:49 -07:00
src code changes for array conversion. 2009-04-15 20:27:45 -07:00
test code changes for array conversion. 2009-04-15 20:27:45 -07:00
usr/gri code changes for array conversion. 2009-04-15 20:27:45 -07:00