1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/// Removes consecutive repeated elements in the vector according to the
/// [`PartialEq`] trait implementation.
///
/// If the vector is sorted, this removes all duplicates.
///
/// This function calls [`Vec::dedup`] under the hood.
/// Removes all but the first of consecutive elements in the vector that
/// resolve to the same value according to the given equality function.
///
/// If the vector is sorted, this removes all duplicates.
///
/// This function calls [`Vec::dedup_by`] under the hood.
/// Removes all but the first of consecutive elements in the vector that
/// resolve to the same key.
///
/// If the vector is sorted, this removes all duplicates.
///
/// This function calls [`Vec::dedup_by_key`] under the hood.