Iterate over all operations.
(&self)
| 453 | |
| 454 | /// Iterate over all operations. |
| 455 | pub fn iter(&self) -> impl Iterator<Item = &DiffOp> { |
| 456 | self.ops.iter() |
| 457 | } |
| 458 | |
| 459 | /// Iterate over only the change operations (non-Equal). |
| 460 | pub fn changes(&self) -> impl Iterator<Item = &DiffOp> { |
no outgoing calls