summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Griesemer <gri@golang.org>2010-10-26 20:30:35 -0700
committerRobert Griesemer <gri@golang.org>2010-10-26 20:30:35 -0700
commitdbcdf42f95892af56f4d8c8c163dd634f902cad9 (patch)
treef1f2ca968619a57660e52a4a04b1be69051cb49a
parent9a82015e1eadbc83ff88814b54185cf0b6d186a7 (diff)
downloadgo-dbcdf42f95892af56f4d8c8c163dd634f902cad9.tar.gz
go spec: note re: append() not being implemented yet
R=rsc CC=golang-dev http://codereview.appspot.com/2761041
-rw-r--r--doc/go_spec.html7
1 files changed, 6 insertions, 1 deletions
diff --git a/doc/go_spec.html b/doc/go_spec.html
index 3aaa2563f..835f9dd49 100644
--- a/doc/go_spec.html
+++ b/doc/go_spec.html
@@ -1,5 +1,5 @@
<!-- title The Go Programming Language Specification -->
-<!-- subtitle Version of Oct 25, 2010 -->
+<!-- subtitle Version of Oct 26, 2010 -->
<!--
TODO
@@ -4558,6 +4558,10 @@ s3 := append(s2, s0...) // append a slice s3 == []int{0, 0, 2, 3
</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
number of elements copied. Source and destination may overlap.
@@ -5228,6 +5232,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: Method expressions are partially implemented.</span></li>
<li><span class="alert">Gccgo: allows only one init() function per source file.</span></li>
</ul>