| 9 | } |
| 10 | |
| 11 | type node struct { |
| 12 | Data NodeData |
| 13 | NodeCount uint32 |
| 14 | Branches *map[uint32]BranchTree |
| 15 | } |
| 16 | |
| 17 | func (n node) Copy() node { |
| 18 | return node{n.Data.Copy(), n.NodeCount, &map[uint32]BranchTree{}} |
nothing calls this directly
no outgoing calls
no test coverage detected