Enums§
- Change
- Abstraction for
diff::Result
,lcs_diff::DiffResult
, andwu_diff::DiffResult
that excludes a variant for common sequence, stores a clone of inserted items, and indices relate iteratively toa
.
Functions§
- diff_
changes - Convert a slice of
diff::Result
into aVec<Change>
. - diff_
diff - Calculate the diff between
a
andb
viadiff::slice
and convert to aVec<Change>
. - insert
- Process an insert.
- lcs_
changes - Convert a slice of
lcs_diff::DiffResult
into aVec<Change>
. - lcs_
diff - Calculate the diff between
a
andb
vialcs_diff::diff
and convert to aVec<Change>
. - patch
- Reproduce
b
from thea
slice andVec<Change>
. - remove
- Process a remove.
- wu_
changes - Convert a slice of
wu_diff::DiffResult
into aVec<Change>
. - wu_diff
- Calculate the diff between
a
andb
viawu_diff::diff
and convert to aVec<Change>
.