File tree Expand file tree Collapse file tree 2 files changed +7
-5
lines changed
branches/beta/src/libstd/collections/hash Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ refs/tags/0.12.0: f0c419429ef30723ceaf6b42f9b5a2aeb5d2e2d1
29
29
refs/heads/automation-fail: 1bf06495443584539b958873e04cc2f864ab10e4
30
30
refs/heads/batch: b7fd822592a4fb577552d93010c4a4e14f314346
31
31
refs/heads/building: 126db549b038c84269a1e4fe46f051b2c15d6970
32
- refs/heads/beta: 35149bf1cec8707c186e324bf858f7bb9f2692e8
32
+ refs/heads/beta: 6814c2f1aa0b214a9d2767283c57446d0b66fa6f
33
33
refs/heads/windistfix: 7608dbad651f02e837ed05eef3d74a6662a6e928
34
34
refs/tags/1.0.0-alpha: e42bd6d93a1d3433c486200587f8f9e12590a4d7
35
35
refs/heads/tmp: 579e31929feff51dcaf8d444648eff8de735f91a
Original file line number Diff line number Diff line change @@ -31,10 +31,12 @@ use super::state::HashState;
31
31
// to get rid of it properly.
32
32
33
33
/// An implementation of a hash set using the underlying representation of a
34
- /// HashMap where the value is (). As with the `HashMap` type, a `HashSet`
35
- /// requires that the elements implement the `Eq` and `Hash` traits. This can
36
- /// frequently be achieved by using `#[derive(Eq, Hash)]`. If you implement
37
- /// these yourself, it is important that the following property holds:
34
+ /// HashMap where the value is ().
35
+ ///
36
+ /// As with the `HashMap` type, a `HashSet` requires that the elements
37
+ /// implement the `Eq` and `Hash` traits. This can frequently be achieved by
38
+ /// using `#[derive(Eq, Hash)]`. If you implement these yourself, it is
39
+ /// important that the following property holds:
38
40
///
39
41
/// ```text
40
42
/// k1 == k2 -> hash(k1) == hash(k2)
You can’t perform that action at this time.
0 commit comments