Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
G
golang
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
go
golang
Commits
735e00d4
Commit
735e00d4
authored
Mar 31, 2010
by
Robert Griesemer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
go spec: clarification of type declarations
R=r, rsc CC=golang-dev
https://golang.org/cl/849044
parent
fd3e067e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
2 deletions
+8
-2
go_spec.html
doc/go_spec.html
+8
-2
No files found.
doc/go_spec.html
View file @
735e00d4
...
...
@@ -1704,9 +1704,11 @@ last non-empty expression list.
<p>
A type declaration binds an identifier, the
<i>
type name
</i>
, to a new type
that has the same definition (element, fields, channel direction, etc.) as
an existing type.
T
he new type is
an existing type.
With the exception of interface types, t
he new type is
<a
href=
"#Properties_of_types_and_values"
>
compatible
</a>
with, but
<a
href=
"#Properties_of_types_and_values"
>
different
</a>
from, the existing type.
A newly defined interface type is always
<a
href=
"#Properties_of_types_and_values"
>
identical
</a>
to the existing type.
</p>
<pre
class=
"ebnf"
>
...
...
@@ -1737,7 +1739,7 @@ type Cipher interface {
<p>
The declared type does not inherit any
<a
href=
"#Method_declarations"
>
methods
</a>
bound to the existing type, but the
<a
href=
"#Types"
>
method set
</a>
of elements of a composite type is not changed:
of elements of a composite type
or of an interface type
is not changed:
</p>
<pre>
...
...
@@ -1754,6 +1756,10 @@ type NewMutex Mutex
type PrintableMutex struct {
Mutex
}
// MyCipher is an interface type that has the same method set as Cipher;
// it is indistinguishable from Cipher.
type MyCipher Cipher
</pre>
<p>
...
...
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