(&self)
| 160 | /// Check if this is a replace operation. |
| 161 | #[inline] |
| 162 | pub fn is_replace(&self) -> bool { |
| 163 | matches!(self, WordDiffOp::Replace { .. }) |
| 164 | } |
| 165 | |
| 166 | /// Check if this is a change (insert, delete, or replace). |
| 167 | /// |
no outgoing calls