1 2 3 4 5 6 7 8 9 10 11 12
//! Utility methods and functions that take an owned `Vec` and return a deduplicated owned `Vec`. mod functions; mod methods; pub use functions::*; pub use methods::*; mod sealed { pub trait IsVec: Sized {} impl<Item> IsVec for Vec<Item> {} }