Function similar::capture_diff[][src]

pub fn capture_diff<Old: ?Sized, New: ?Sized>(
    alg: Algorithm,
    old: &Old,
    old_range: Range<usize>,
    new: &New,
    new_range: Range<usize>
) -> Vec<DiffOp> where
    Old: Index<usize>,
    New: Index<usize>,
    Old::Output: Hash + Eq + Ord,
    New::Output: PartialEq<Old::Output> + Hash + Eq + Ord

Creates a diff between old and new with the given algorithm capturing the ops.

This is like diff but instead of using an arbitrary hook this will always use Compact + Replace + Capture and return the captured DiffOps.