MCPcopy Create free account
hub / github.com/TheAlgorithms/Go / node

Struct node

structure/hashmap/hashmap.go:10–14  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

8var defaultCapacity uint64 = 1 << 10
9
10type node struct {
11 key any
12 value any
13 next *node
14}
15
16// HashMap is a Golang implementation of a hashmap
17type HashMap struct {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected