Method
diff
(&self, baseline: &Self, path: PathBuilder, event_queue: &mut E)
Source from the content-addressed store, hash-verified
| 39 | |
| 40 | impl<T: Diff, const LEN: usize> Diff for [T; LEN] { |
| 41 | fn diff<E: EventQueue>(&self, baseline: &Self, path: PathBuilder, event_queue: &mut E) { |
| 42 | for (i, item) in self.iter().enumerate() { |
| 43 | item.diff(&baseline[i], path.with(i as u32), event_queue); |
| 44 | } |
| 45 | } |
| 46 | } |
| 47 | |
| 48 | impl<T: Patch, const LEN: usize> Patch for [T; LEN] { |
Callers
nothing calls this directly
Tested by
no test coverage detected