commit
b428cd55b8
@ -474,8 +474,12 @@ impl <T: Hash IterBytes Eq> LinearSet<T>: BaseIter<T> {
|
||||
}
|
||||
|
||||
impl <T: Hash IterBytes Eq> LinearSet<T>: Eq {
|
||||
pure fn eq(&self, other: &LinearSet<T>) -> bool { self.map == other.map }
|
||||
pure fn ne(&self, other: &LinearSet<T>) -> bool { self.map != other.map }
|
||||
pure fn eq(&self, other: &LinearSet<T>) -> bool {
|
||||
self.map == other.map
|
||||
}
|
||||
pure fn ne(&self, other: &LinearSet<T>) -> bool {
|
||||
self.map != other.map
|
||||
}
|
||||
}
|
||||
|
||||
impl <T: Hash IterBytes Eq> LinearSet<T>: Set<T> {
|
||||
|
Loading…
Reference in New Issue
Block a user