array_tool
pub trait Uniq { fn uniq(&self, other: Self) -> Self; fn unique(&self) -> Self; }
fn uniq(&self, other: Self) -> Self
fn unique(&self) -> Self
impl<T: Clone + PartialEq> Uniq for Vec<T>