-
Notifications
You must be signed in to change notification settings - Fork 13.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
std: Stabilize the std::hash module #20654
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,7 +27,7 @@ use core::ops::{Index, IndexMut}; | |
use core::ptr; | ||
use core::raw::Slice as RawSlice; | ||
|
||
use std::hash::{Writer, Hash}; | ||
use std::hash::{Writer, Hash, Hasher}; | ||
use std::cmp; | ||
|
||
use alloc::heap; | ||
|
@@ -1562,7 +1562,7 @@ impl<A: Ord> Ord for RingBuf<A> { | |
} | ||
|
||
#[stable] | ||
impl<S: Writer, A: Hash<S>> Hash<S> for RingBuf<A> { | ||
impl<S: Writer + Hasher, A: Hash<S>> Hash<S> for RingBuf<A> { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
fn hash(&self, state: &mut S) { | ||
self.len().hash(state); | ||
for elt in self.iter() { | ||
|
@@ -1631,7 +1631,7 @@ mod tests { | |
use prelude::*; | ||
use core::iter; | ||
use std::fmt::Show; | ||
use std::hash; | ||
use std::hash::{self, SipHasher}; | ||
use test::Bencher; | ||
use test; | ||
|
||
|
@@ -2283,7 +2283,7 @@ mod tests { | |
y.push_back(2); | ||
y.push_back(3); | ||
|
||
assert!(hash::hash(&x) == hash::hash(&y)); | ||
assert!(hash::hash::<_, SipHasher>(&x) == hash::hash::<_, SipHasher>(&y)); | ||
} | ||
|
||
#[test] | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -820,12 +820,21 @@ impl fmt::Show for String { | |
} | ||
|
||
#[experimental = "waiting on Hash stabilization"] | ||
#[cfg(stage0)] | ||
impl<H: hash::Writer> hash::Hash<H> for String { | ||
#[inline] | ||
fn hash(&self, hasher: &mut H) { | ||
(**self).hash(hasher) | ||
} | ||
} | ||
#[experimental = "waiting on Hash stabilization"] | ||
#[cfg(not(stage0))] | ||
impl<H: hash::Writer + hash::Hasher> hash::Hash<H> for String { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
#[inline] | ||
fn hash(&self, hasher: &mut H) { | ||
(**self).hash(hasher) | ||
} | ||
} | ||
|
||
#[unstable = "recent addition, needs more experience"] | ||
impl<'a> Add<&'a str> for String { | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1183,12 +1183,20 @@ impl<T:Clone> Clone for Vec<T> { | |
} | ||
} | ||
|
||
#[cfg(stage0)] | ||
impl<S: hash::Writer, T: Hash<S>> Hash<S> for Vec<T> { | ||
#[inline] | ||
fn hash(&self, state: &mut S) { | ||
self.as_slice().hash(state); | ||
} | ||
} | ||
#[cfg(not(stage0))] | ||
impl<S: hash::Writer + hash::Hasher, T: Hash<S>> Hash<S> for Vec<T> { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
#[inline] | ||
fn hash(&self, state: &mut S) { | ||
self.as_slice().hash(state); | ||
} | ||
} | ||
|
||
#[experimental = "waiting on Index stability"] | ||
impl<T> Index<uint> for Vec<T> { | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,7 +18,7 @@ use core::prelude::*; | |
use core::cmp::Ordering; | ||
use core::default::Default; | ||
use core::fmt; | ||
use core::hash::{Hash, Writer}; | ||
use core::hash::{Hash, Writer, Hasher}; | ||
use core::iter::{Enumerate, FilterMap, Map, FromIterator}; | ||
use core::iter; | ||
use core::mem::replace; | ||
|
@@ -85,7 +85,7 @@ impl<V:Clone> Clone for VecMap<V> { | |
} | ||
} | ||
|
||
impl<S: Writer, V: Hash<S>> Hash<S> for VecMap<V> { | ||
impl<S: Writer + Hasher, V: Hash<S>> Hash<S> for VecMap<V> { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
fn hash(&self, state: &mut S) { | ||
// In order to not traverse the `VecMap` twice, count the elements | ||
// during iteration. | ||
|
@@ -712,7 +712,7 @@ impl<V> DoubleEndedIterator for IntoIter<V> { | |
#[cfg(test)] | ||
mod test_map { | ||
use prelude::*; | ||
use core::hash::hash; | ||
use core::hash::{hash, SipHasher}; | ||
|
||
use super::VecMap; | ||
|
||
|
@@ -1004,7 +1004,7 @@ mod test_map { | |
let mut x = VecMap::new(); | ||
let mut y = VecMap::new(); | ||
|
||
assert!(hash(&x) == hash(&y)); | ||
assert!(hash::<_, SipHasher>(&x) == hash::<_, SipHasher>(&y)); | ||
x.insert(1, 'a'); | ||
x.insert(2, 'b'); | ||
x.insert(3, 'c'); | ||
|
@@ -1013,12 +1013,12 @@ mod test_map { | |
y.insert(2, 'b'); | ||
y.insert(1, 'a'); | ||
|
||
assert!(hash(&x) == hash(&y)); | ||
assert!(hash::<_, SipHasher>(&x) == hash::<_, SipHasher>(&y)); | ||
|
||
x.insert(1000, 'd'); | ||
x.remove(&1000); | ||
|
||
assert!(hash(&x) == hash(&y)); | ||
assert!(hash::<_, SipHasher>(&x) == hash::<_, SipHasher>(&y)); | ||
} | ||
|
||
#[test] | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Writer
bound no longer needed.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I do think that this is needed because of the
self.len().hash(state)
b/cuint
requiresWriter