Skip to main content

into_deduped/
lib.rs

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