Crate diffs[][src]

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

Re-exports

pub use myers::diff;

Modules

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.