remove_child method
remove_child
Removes the specified node from the current node’s children.
def remove_child(self, node):
...
Parameter | Type | Description |
---|---|---|
node | EquationNode | Node to be deleted. |
remove_child
Removes the node at the specified index from the current node’s children.
def remove_child(self, index):
...
Parameter | Type | Description |
---|---|---|
index | int | Index of the node |