Skip to main content

set_difference

Function set_difference 

pub fn set_difference<T>(left: &[T], right: &[T]) -> Vec<T>
where T: Clone + PartialEq,
Expand description

Returns the unique members of left \ right in the order they first appear in left.