(&self)
| 106 | /// Check if this hunk represents a change. |
| 107 | #[inline] |
| 108 | pub fn is_change(&self) -> bool { |
| 109 | !matches!(self, HunkKind::Unchanged) |
| 110 | } |
| 111 | |
| 112 | /// Check if this hunk represents deleted content. |
| 113 | #[inline] |
no outgoing calls
no test coverage detected