Get all nodes in the graph
(&self)
| 164 | |
| 165 | /// Get all nodes in the graph |
| 166 | pub fn get_all_nodes(&self) -> Vec<&Node> { |
| 167 | self.nodes.values().collect() |
| 168 | } |
| 169 | |
| 170 | /// Get all nodes in the graph (owned) |
| 171 | pub fn get_all_nodes_owned(&self) -> Result<Vec<Node>, GraphError> { |
no outgoing calls
no test coverage detected