auto merge of #16020 : nham/rust/ringbuf_hash_ord, r=alexcrichton

cc #15294
This commit is contained in:
bors 2014-07-27 19:06:16 +00:00
commit 70972832b3

View File

@ -19,6 +19,8 @@
use core::default::Default;
use core::fmt;
use core::iter::RandomAccessIterator;
use core::iter;
use std::hash::{Writer, Hash};
use {Deque, Collection, Mutable, MutableSeq};
use vec::Vec;
@ -450,6 +452,21 @@ fn ne(&self, other: &RingBuf<A>) -> bool {
}
}
impl<A: PartialOrd> PartialOrd for RingBuf<A> {
fn partial_cmp(&self, other: &RingBuf<A>) -> Option<Ordering> {
iter::order::partial_cmp(self.iter(), other.iter())
}
}
impl<S: Writer, A: Hash<S>> Hash<S> for RingBuf<A> {
fn hash(&self, state: &mut S) {
self.len().hash(state);
for elt in self.iter() {
elt.hash(state);
}
}
}
impl<A> FromIterator<A> for RingBuf<A> {
fn from_iter<T: Iterator<A>>(iterator: T) -> RingBuf<A> {
let (lower, _) = iterator.size_hint();
@ -485,6 +502,7 @@ mod tests {
use std::fmt::Show;
use std::prelude::*;
use std::gc::{GC, Gc};
use std::hash;
use test::Bencher;
use test;
@ -912,6 +930,37 @@ fn test_eq() {
assert!(e == RingBuf::new());
}
#[test]
fn test_hash() {
let mut x = RingBuf::new();
let mut y = RingBuf::new();
x.push(1i);
x.push(2);
x.push(3);
y.push(0i);
y.push(1i);
y.pop_front();
y.push(2);
y.push(3);
assert!(hash::hash(&x) == hash::hash(&y));
}
#[test]
fn test_ord() {
let x = RingBuf::new();
let mut y = RingBuf::new();
y.push(1i);
y.push(2);
y.push(3);
assert!(x < y);
assert!(y > x);
assert!(x <= x);
assert!(x >= x);
}
#[test]
fn test_show() {
let ringbuf: RingBuf<int> = range(0i, 10).collect();