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
11684680
Commit
11684680
authored
Oct 29, 2010
by
Robert Griesemer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
go spec: append is now implemented
R=r, r2 CC=golang-dev
https://golang.org/cl/2717043
parent
7eb5c9a5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
6 deletions
+2
-6
doc/go_spec.html
doc/go_spec.html
+2
-6
No files found.
doc/go_spec.html
View file @
11684680
<!-- title The Go Programming Language Specification -->
<!-- subtitle Version of Oct 2
7
, 2010 -->
<!-- subtitle Version of Oct 2
9
, 2010 -->
<!--
TODO
...
...
@@ -4558,10 +4558,6 @@ s2 := append(s1, 3, 5, 7) // append multiple elements s2 == []int{0, 0, 2, 3
s3 := append(s2, s0...) // append a slice s3 == []int{0, 0, 2, 3, 5, 7, 0, 0}
</pre>
<p>
<span
class=
"alert"
>
Note:
<code>
append
</code>
is not yet implemented.
</span>
</p>
<p>
The function
<code>
copy
</code>
copies slice elements from
a source
<code>
src
</code>
to a destination
<code>
dst
</code>
and returns the
...
...
@@ -5233,7 +5229,7 @@ The following minimal alignment properties are guaranteed:
<h2
id=
"Implementation_differences"
><span
class=
"alert"
>
Implementation differences - TODO
</span></h2>
<ul>
<li><span
class=
"alert"
>
Implementation does not honor the restriction on goto statements and targets (no intervening declarations).
</span></li>
<li><span
class=
"alert"
>
The
<code>
append
</code>
built-in function is not yet implemented.
</span></li>
<li><span
class=
"alert"
>
Gccgo:
The
<code>
append
</code>
built-in function is not yet implemented.
</span></li>
<li><span
class=
"alert"
>
Gccgo: Method expressions are partially implemented.
</span></li>
<li><span
class=
"alert"
>
Gccgo: allows only one init() function per source file.
</span></li>
</ul>
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