pub fn myers_diff<T: Eq + Clone>(a: &[T], b: &[T]) -> Vec<DiffItem<T>>
Myers diff algorithm @param a old data @param b new data @returns diff result TODO: ignore some columns when using the ‘header row’ option