Get the `Node`s that make up the given strongly-connected component.
(&self, component: Scc)
| 219 | |
| 220 | /// Get the `Node`s that make up the given strongly-connected component. |
| 221 | pub fn nodes(&self, component: Scc) -> &[Node] { |
| 222 | let range = self.components[component].clone(); |
| 223 | self.node_range(range) |
| 224 | } |
| 225 | |
| 226 | /// Get this set of strongly-connected components' "evaporation". |
| 227 | /// |
no test coverage detected