| 8 | var defaultCapacity uint64 = 1 << 10 |
| 9 | |
| 10 | type node struct { |
| 11 | key any |
| 12 | value any |
| 13 | next *node |
| 14 | } |
| 15 | |
| 16 | // HashMap is a Golang implementation of a hashmap |
| 17 | type HashMap struct { |
nothing calls this directly
no outgoing calls
no test coverage detected