---------------------------------------------------------------------------- Implementation of the HashMap
| 20 | // Implementation of the HashMap |
| 21 | |
| 22 | type KeyType interface { |
| 23 | Hash() uint32 |
| 24 | Match(other KeyType) bool |
| 25 | } |
| 26 | |
| 27 | |
| 28 | type ValueType interface { |
no outgoing calls
no test coverage detected