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
b34f0551
Commit
b34f0551
authored
Apr 02, 2013
by
Robert Griesemer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
spec: Go has no 'reference types'
R=golang-dev, r CC=golang-dev
https://golang.org/cl/8288044
parent
839c4f01
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
6 deletions
+4
-6
doc/go_spec.html
doc/go_spec.html
+4
-6
No files found.
doc/go_spec.html
View file @
b34f0551
<!--{
"Title": "The Go Programming Language Specification",
"Subtitle": "Version of
March 22
, 2013",
"Subtitle": "Version of
April 3
, 2013",
"Path": "/ref/spec"
}-->
...
...
@@ -837,9 +837,9 @@ multi-dimensional types.
<h3
id=
"Slice_types"
>
Slice types
</h3>
<p>
A slice is a
reference to
a contiguous segment of an array and
contains a numbered sequence of elements from that array. A slice
type denotes the set of all slices of arrays of its element type.
A slice is a
descriptor for
a contiguous segment of an array and
provides access to a numbered sequence of elements from that array.
A slice
type denotes the set of all slices of arrays of its element type.
The value of an uninitialized slice is
<code>
nil
</code>
.
</p>
...
...
@@ -5197,8 +5197,6 @@ of the memory.
<h3
id=
"Making_slices_maps_and_channels"
>
Making slices, maps and channels
</h3>
<p>
Slices, maps and channels are reference types that do not require the
extra indirection of an allocation with
<code>
new
</code>
.
The built-in function
<code>
make
</code>
takes a type
<code>
T
</code>
,
which must be a slice, map or channel type,
optionally followed by a type-specific list of expressions.
...
...
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