Module difft::diff::myers_diff
source · Expand description
A fast diff for linear content, using Myer’s diff algorithm.
Enums
Functions
- slice 🔒Compute a linear diff between
lhs
andrhs
. This is the traditional Myer’s diff algorithm. - Compute a linear diff between
lhs
andrhs
, but use hashed values internally. - Compute the linear diff between
lhs
andrhs
. If there are items that only occur on a single side, mark them as novel without processing them with Myer’s diff.