Check if a specific change is explained by this graph.
(&self, hash: &Hash)
| 365 | |
| 366 | /// Check if a specific change is explained by this graph. |
| 367 | pub fn explains_change(&self, hash: &Hash) -> bool { |
| 368 | self.changes_explained.contains(hash) |
| 369 | } |
| 370 | |
| 371 | /// Check if this graph is part of a chain (has a predecessor). |
| 372 | pub fn is_chained(&self) -> bool { |
no test coverage detected