fix long lines

This commit is contained in:
Daniel Micay 2013-01-20 17:07:57 -05:00
parent b86c90b73a
commit 1f85c711af

View File

@ -474,8 +474,12 @@ pub mod linear {
}
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> {