Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
go
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
go
Commits
bcdc247f
Commit
bcdc247f
authored
Apr 16, 2009
by
Russ Cox
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
spec edits for array slice change
R=r DELTA=6 (0 added, 2 deleted, 4 changed) OCL=27532 CL=27582
parent
3a8ff823
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
7 deletions
+5
-7
doc/go_spec.html
doc/go_spec.html
+5
-7
No files found.
doc/go_spec.html
View file @
bcdc247f
...
...
@@ -1265,9 +1265,8 @@ be assigned to different types:
The predeclared constant
<code>
nil
</code>
can be assigned to any
pointer, function, slice, map, channel, or interface variable.
<li>
Arrays can be assigned to slice variables with equal element type.
When assigning to a slice variable, the array is not copied but a
slice comprising the entire array is created.
A pointer to an array can be assigned to a slice variable with equal element type.
The slice variable then refers to the original array; the data is not copied.
</li>
<li>
A value can be assigned to an interface variable if the static
...
...
@@ -3006,7 +3005,7 @@ of which happen before receiving the value from the channel
<code>
c
</code>
.
However, the order of those events compared to the evaluation of
<code>
f
</code>
, the evaluation of
<code>
x
</code>
, and the indexing
of
<code>
x
</code>
by the return value of
of
<code>
x
</code>
by the return value of
<code>
i()
</code>
is not specified.
</p>
...
...
@@ -3896,7 +3895,6 @@ result. <font color=red>TODO: clarify?</font>
<li>
4a) Converting an integer value yields a string containing the UTF-8
representation of the integer.
(TODO: this one could be done just as well by a library.)
<pre>
string(0x65e5) // "\u65e5"
...
...
@@ -3904,8 +3902,8 @@ string(0x65e5) // "\u65e5"
</li>
<li>
4b) Converting a
n array or
slice of bytes yields a string whose successive
bytes are those of the
array/
slice.
4b) Converting a slice of bytes yields a string whose successive
bytes are those of the slice.
<pre>
string([]byte{'h', 'e', 'l', 'l', 'o'}) // "hello"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment