Get a mutable reference to an edge by ID
(&mut self, id: &str)
| 151 | |
| 152 | /// Get a mutable reference to an edge by ID |
| 153 | pub fn get_edge_mut(&mut self, id: &str) -> Option<&mut Edge> { |
| 154 | self.edges.get_mut(id) |
| 155 | } |
| 156 | |
| 157 | /// Get all nodes with a specific label |
| 158 | pub fn get_nodes_by_label(&self, label: &str) -> Vec<&Node> { |
no test coverage detected