Check if this change knows about another change. A change "knows" another if it's either a dependency or extra_known.
(&self, hash: &Hash)
| 580 | /// |
| 581 | /// A change "knows" another if it's either a dependency or extra_known. |
| 582 | pub fn knows(&self, hash: &Hash) -> bool { |
| 583 | self.hashed.dependencies.contains(hash) || self.hashed.extra_known.contains(hash) |
| 584 | } |
| 585 | |
| 586 | /// Collect all unique hashes referenced by hunks into the hash dedup table. |
| 587 | /// |
no test coverage detected