type DockNodeGraph = DHashMap<usize, DockNode>;
A map of node index to DockNode, where DockNode contains a list of nodes that the node is connected to.
struct DockNodeGraph { /* private fields */ }