MCPcopy Create free account
hub / github.com/brunocalza/buffer-pool-manager / node

Struct node

circular_list.go:8–13  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6)
7
8type node struct {
9 key interface{}
10 value interface{}
11 next *node
12 prev *node
13}
14
15type circularList struct {
16 head *node

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected