Returns the vector of nodes contained in the graph in order of construction. # Returns Vector of nodes of the graph
(&self)
| 3158 | /// |
| 3159 | /// Vector of nodes of the graph |
| 3160 | pub fn get_nodes(&self) -> Vec<Node> { |
| 3161 | self.body.borrow().nodes.clone() |
| 3162 | } |
| 3163 | |
| 3164 | /// Promotes a given node to the output node of the parent graph. |
| 3165 | /// |