Skip to main content

compute_diff_full

Function compute_diff_full 

Source
pub fn compute_diff_full<T, F, L>(
    source: &[T],
    target: &[T],
    equalizer: &F,
    max_chain_length: usize,
    listener: Option<&mut L>,
) -> Vec<Change>
where T: Eq + Hash, F: Fn(&T, &T) -> bool + ?Sized, L: DiffAlgorithmListener + ?Sized,
Expand description

Full histogram diff entry point with workspace and listener support.