``append`` adds a node to a flow graph. .. note:: After the graph has completed layout, this function has no effect. :param FlowGraphNode node: Node to add :return: Index of node :rtype: int
(self, node)
| 814 | return result |
| 815 | |
| 816 | def append(self, node): |
| 817 | """ |
| 818 | ``append`` adds a node to a flow graph. |
| 819 | |
| 820 | .. note:: After the graph has completed layout, this function has no effect. |
| 821 | |
| 822 | :param FlowGraphNode node: Node to add |
| 823 | :return: Index of node |
| 824 | :rtype: int |
| 825 | """ |
| 826 | return core.BNAddFlowGraphNode(self.handle, node.handle) |
| 827 | |
| 828 | def replace(self, index, node): |
| 829 | """ |
no outgoing calls
no test coverage detected