Crate diffs

Source
Expand description

Various diff (longest common subsequence) algorithms, used in practice:

Modules§

bin
Binary diff algorithm
myers
Myers’ diff algorithm
patience
Patience diff algorithm

Structs§

Replace
A “differ” that combines deletions and insertions to give blocks of maximal length, and replacements when appropriate.

Traits§

Diff
A trait for reacting to an edit script from the “old” version to the “new” version.
DiffAlgorithm