Commit 9c3d876d authored by Robert Griesemer's avatar Robert Griesemer

go/spec: Update language on map types.

Fixes #2803.

R=r
CC=golang-dev
https://golang.org/cl/5601053
parent 91cb3489
<!--{ <!--{
"Title": "The Go Programming Language Specification", "Title": "The Go Programming Language Specification",
"Subtitle": "Version of January 21, 2012" "Subtitle": "Version of January 30, 2012"
}--> }-->
<!-- <!--
...@@ -1150,7 +1150,8 @@ KeyType = Type . ...@@ -1150,7 +1150,8 @@ KeyType = Type .
<p> <p>
The comparison operators <code>==</code> and <code>!=</code> The comparison operators <code>==</code> and <code>!=</code>
<a href="#Comparison_operators">Comparison operators</a>) must be fully defined <a href="#Comparison_operators">Comparison operators</a>) must be fully defined
for operands of the key type; thus the key type must not be a struct, array or slice. for operands of the key type; thus the key type must not be a function, map, or
slice.
If the key type is an interface type, these If the key type is an interface type, these
comparison operators must be defined for the dynamic key values; comparison operators must be defined for the dynamic key values;
failure will cause a <a href="#Run_time_panics">run-time panic</a>. failure will cause a <a href="#Run_time_panics">run-time panic</a>.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment