pub fn myers<'old, 'new, 'bufs>(
    old: &'old BStr,
    new: &'new BStr
) -> TextDiff<'old, 'new, 'bufs, [u8]>
Expand description

Provide an iterator over the changes needed to turn old into new with Myers algorithm, the default for git.

See the similar crate documentation for information on how to use the iterator.