Check if the sequences are unchanged (all Equal operations).
(&self)
| 433 | |
| 434 | /// Check if the sequences are unchanged (all Equal operations). |
| 435 | pub fn is_unchanged(&self) -> bool { |
| 436 | self.ops.iter().all(|op| op.is_equal()) |
| 437 | } |
| 438 | |
| 439 | /// Get the total number of deleted lines. |
| 440 | pub fn deletions(&self) -> usize { |
no test coverage detected