Add an operation to the result.
(&mut self, op: DiffOp)
| 418 | |
| 419 | /// Add an operation to the result. |
| 420 | pub fn push(&mut self, op: DiffOp) { |
| 421 | self.ops.push(op); |
| 422 | } |
| 423 | |
| 424 | /// Get the number of operations. |
| 425 | pub fn len(&self) -> usize { |
no outgoing calls