1
0
mirror of https://github.com/golang/go synced 2024-10-02 12:18:33 -06:00

reflect: explicitly state that Type values can be used as map keys

Fixes #6535

Change-Id: I34974c0050424c96d19ad69bf4522bb69cde2fd5
Reviewed-on: https://go-review.googlesource.com/85815
Reviewed-by: Ian Lance Taylor <iant@golang.org>
This commit is contained in:
Tim Cooper 2018-01-01 12:11:58 -04:00 committed by Ian Lance Taylor
parent cd97aca3fd
commit 6317adeed7

View File

@ -32,7 +32,8 @@ import (
// calling kind-specific methods. Calling a method
// inappropriate to the kind of type causes a run-time panic.
//
// Type values are comparable, such as with the == operator.
// Type values are comparable, such as with the == operator, and Type can be
// used as a map key type.
// Two Type values are equal if they represent identical types.
type Type interface {
// Methods applicable to all types.