1package node
2
3type Node struct {
4	ID    int
5	Value interface{}
6}
7
8type NodeOrderedSet []Node
9