Skip to content

Commit 5320e13

Browse files
committed
add a LinearSet type (implementing the Set trait)
1 parent 13d07ad commit 5320e13

File tree

1 file changed

+45
-2
lines changed

1 file changed

+45
-2
lines changed

src/libcore/send_map.rs

+45-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
1+
// Copyright 2013 The Rust Project Developers. See the COPYRIGHT
22
// file at the top-level directory of this distribution and at
33
// http://rust-lang.org/COPYRIGHT.
44
//
@@ -46,6 +46,8 @@ pub trait SendMap<K:Eq Hash, V: Copy> {
4646

4747
/// Open addressing with linear probing.
4848
pub mod linear {
49+
use iter::BaseIter;
50+
use container::Set;
4951
use cmp::Eq;
5052
use cmp;
5153
use hash::Hash;
@@ -442,7 +444,7 @@ pub mod linear {
442444
}
443445
}
444446

445-
impl<K:Hash IterBytes Eq, V: Eq> LinearMap<K, V>: cmp::Eq {
447+
impl<K:Hash IterBytes Eq, V: Eq> LinearMap<K, V>: Eq {
446448
pure fn eq(&self, other: &LinearMap<K, V>) -> bool {
447449
if self.len() != other.len() { return false; }
448450

@@ -460,6 +462,47 @@ pub mod linear {
460462
!self.eq(other)
461463
}
462464
}
465+
466+
pub struct LinearSet<T: Hash IterBytes Eq> {
467+
priv map: LinearMap<T, ()>
468+
}
469+
470+
impl <T: Hash IterBytes Eq> LinearSet<T>: BaseIter<T> {
471+
/// Visit all values in order
472+
pure fn each(&self, f: fn(&T) -> bool) { self.map.each_key(f) }
473+
pure fn size_hint(&self) -> Option<uint> { Some(self.len()) }
474+
}
475+
476+
impl <T: Hash IterBytes Eq> LinearSet<T>: Eq {
477+
pure fn eq(&self, other: &LinearSet<T>) -> bool { self.map == other.map }
478+
pure fn ne(&self, other: &LinearSet<T>) -> bool { self.map != other.map }
479+
}
480+
481+
impl <T: Hash IterBytes Eq> LinearSet<T>: Set<T> {
482+
/// Return true if the set contains a value
483+
pure fn contains(&self, value: &T) -> bool {
484+
self.map.contains_key(value)
485+
}
486+
487+
/// Add a value to the set. Return true if the value was not already
488+
/// present in the set.
489+
fn insert(&mut self, value: T) -> bool { self.map.insert(value, ()) }
490+
491+
/// Remove a value from the set. Return true if the value was
492+
/// present in the set.
493+
fn remove(&mut self, value: &T) -> bool { self.map.remove(value) }
494+
}
495+
496+
impl <T: Hash IterBytes Eq> LinearSet<T> {
497+
/// Create an empty LinearSet
498+
static fn new() -> LinearSet<T> { LinearSet{map: LinearMap()} }
499+
500+
/// Return the number of elements in the set
501+
pure fn len(&self) -> uint { self.map.len() }
502+
503+
/// Return true if the set contains no elements
504+
pure fn is_empty(&self) -> bool { self.map.is_empty() }
505+
}
463506
}
464507

465508
#[test]

0 commit comments

Comments
 (0)