fix long lines
This commit is contained in:
parent
b86c90b73a
commit
1f85c711af
1 changed files with 6 additions and 2 deletions
|
@ -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> {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue