A Key may be any value that is comparable. See http://golang.org/ref/spec#Comparison_operators
| 35 | |
| 36 | // A Key may be any value that is comparable. See http://golang.org/ref/spec#Comparison_operators |
| 37 | type Key interface{} |
| 38 | |
| 39 | type entry struct { |
| 40 | key Key |