pub fn lcs_diff<T: PartialEq + Clone + Debug>(
a: &[T],
b: &[T],
) -> Vec<Change<T>>
Expand description
Calculate the diff between a
and b
via lcs_diff::diff
and convert to a Vec<Change>
.
pub fn lcs_diff<T: PartialEq + Clone + Debug>(
a: &[T],
b: &[T],
) -> Vec<Change<T>>
Calculate the diff between a
and b
via lcs_diff::diff
and convert to a Vec<Change>
.