AddNode adds a new node to this one and return its pointer
(text string)
| 297 | |
| 298 | // AddNode adds a new node to this one and return its pointer |
| 299 | func (n *TreeNode) AddNode(text string) *TreeNode { |
| 300 | |
| 301 | return n.InsertNodeAt(n.Len(), text) |
| 302 | } |
| 303 | |
| 304 | // Remove removes the specified child from this node or any |
| 305 | // of its children nodes |
nothing calls this directly
no test coverage detected