From: Rob Pike Date: Tue, 10 Mar 2009 05:35:06 +0000 (-0700) Subject: conversions are mostly cleaned up; bring the spec in line. X-Git-Tag: weekly.2009-11-06~2060 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=ef1b9653dd1cb8b626c2ce13432c7bdcc9ea5744;p=gostls13.git conversions are mostly cleaned up; bring the spec in line. R=gri DELTA=31 (12 added, 18 deleted, 1 changed) OCL=25974 CL=25976 --- diff --git a/doc/go_spec.html b/doc/go_spec.html index 4dbf65481a..aec268b5d8 100644 --- a/doc/go_spec.html +++ b/doc/go_spec.html @@ -3,13 +3,6 @@ @@ -3643,8 +3643,6 @@ space allocated in the underlying array (for a slice) or map. For a slice

Conversions

-TODO: We need to finalize the details of conversions. -
Conversions look like function calls of the form

@@ -4183,15 +4181,11 @@ The following minimal alignment properties are guaranteed: Implementation accepts only ASCII digits for digits; doc says Unicode.
-Implementation does not allow p.x where p is the local package name. -
Implementation does not honor the restriction on goto statements and targets (no intervening declarations).
cap() does not work on maps or chans.
len() does not work on chans. -
-Conversions work for any type; doc says only numeric types and strings.