(&mut self)
| 1224 | /// De-duplicates the vec contents. |
| 1225 | #[inline(always)] |
| 1226 | pub fn dedup(&mut self) |
| 1227 | where |
| 1228 | A::Item: PartialEq, |
| 1229 | { |
| 1230 | self.dedup_by(|a, b| a == b) |
| 1231 | } |
| 1232 | |
| 1233 | /// De-duplicates the vec according to the predicate given. |
| 1234 | #[inline(always)] |