• Russ Cox's avatar
    code changes for array conversion. · 60ce95d7
    Russ Cox authored
    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
    60ce95d7
Name
Last commit
Last update
..
cmd Loading commit data...
lib Loading commit data...
lib9 Loading commit data...
libbio Loading commit data...
libmach_amd64 Loading commit data...
old/c Loading commit data...
pkg/debug/macho/testdata Loading commit data...
runtime Loading commit data...
Make.conf Loading commit data...
all.bash Loading commit data...
clean.bash Loading commit data...
make.bash Loading commit data...
quietgcc.bash Loading commit data...
run.bash Loading commit data...
sudo.bash Loading commit data...