Check if this is an Equal operation.
(&self)
| 149 | |
| 150 | /// Check if this is an Equal operation. |
| 151 | pub fn is_equal(&self) -> bool { |
| 152 | matches!(self, DiffOp::Equal { .. }) |
| 153 | } |
| 154 | |
| 155 | /// Check if this is an Insert operation. |
| 156 | pub fn is_insert(&self) -> bool { |
no outgoing calls
no test coverage detected