Rollup merge of #23814 - steveklabnik:gh23320, r=alexcrichton
Fixes #23320
This commit is contained in:
commit
5daab4a25b
@ -73,6 +73,16 @@
|
||||
///
|
||||
/// The `H` type parameter is an abstract hash state that is used by the `Hash`
|
||||
/// to compute the hash.
|
||||
///
|
||||
/// If you are also implementing `Eq`, there is an additional property that
|
||||
/// is important:
|
||||
///
|
||||
/// ```text
|
||||
/// k1 == k2 -> hash(k1) == hash(k2)
|
||||
/// ```
|
||||
///
|
||||
/// In other words, if two keys are equal, their hashes should also be equal.
|
||||
/// `HashMap` and `HashSet` both rely on this behavior.
|
||||
#[stable(feature = "rust1", since = "1.0.0")]
|
||||
pub trait Hash {
|
||||
/// Feeds this value into the state given, updating the hasher as necessary.
|
||||
|
@ -214,7 +214,14 @@ fn test_resize_policy() {
|
||||
/// overridden with one of the constructors.
|
||||
///
|
||||
/// It is required that the keys implement the `Eq` and `Hash` traits, although
|
||||
/// this can frequently be achieved by using `#[derive(Eq, Hash)]`.
|
||||
/// this can frequently be achieved by using `#[derive(Eq, Hash)]`. If you
|
||||
/// implement these yourself, it is important that the following property holds:
|
||||
///
|
||||
/// ```text
|
||||
/// k1 == k2 -> hash(k1) == hash(k2)
|
||||
/// ```
|
||||
///
|
||||
/// In other words, if two keys are equal, their hashes must be equal.
|
||||
///
|
||||
/// It is a logic error for a key to be modified in such a way that the key's
|
||||
/// hash, as determined by the `Hash` trait, or its equality, as determined by
|
||||
|
@ -34,7 +34,16 @@
|
||||
|
||||
/// An implementation of a hash set using the underlying representation of a
|
||||
/// HashMap where the value is (). As with the `HashMap` type, a `HashSet`
|
||||
/// requires that the elements implement the `Eq` and `Hash` traits.
|
||||
/// requires that the elements implement the `Eq` and `Hash` traits. This can
|
||||
/// frequently be achieved by using `#[derive(Eq, Hash)]`. If you implement
|
||||
/// these yourself, it is important that the following property holds:
|
||||
///
|
||||
/// ```text
|
||||
/// k1 == k2 -> hash(k1) == hash(k2)
|
||||
/// ```
|
||||
///
|
||||
/// In other words, if two keys are equal, their hashes must be equal.
|
||||
///
|
||||
///
|
||||
/// It is a logic error for an item to be modified in such a way that the
|
||||
/// item's hash, as determined by the `Hash` trait, or its equality, as
|
||||
|
Loading…
Reference in New Issue
Block a user