Check if the result is empty (both sequences were empty).
(&self)
| 360 | |
| 361 | /// Check if the result is empty (both sequences were empty). |
| 362 | pub fn is_empty(&self) -> bool { |
| 363 | self.old_tokens.is_empty() && self.new_tokens.is_empty() |
| 364 | } |
| 365 | |
| 366 | /// Count the number of inserted tokens. |
| 367 | pub fn insertions(&self) -> usize { |
no outgoing calls
no test coverage detected