HashMap is a Golang implementation of a hashmap
| 15 | |
| 16 | // HashMap is a Golang implementation of a hashmap |
| 17 | type HashMap struct { |
| 18 | capacity uint64 |
| 19 | size uint64 |
| 20 | table []*node |
| 21 | } |
| 22 | |
| 23 | // DefaultNew returns a new HashMap instance with default values |
| 24 | func DefaultNew() *HashMap { |
nothing calls this directly
no outgoing calls
no test coverage detected