(&self, other: &Self)
| 612 | } |
| 613 | impl PartialEq for CompareByRangeSize { |
| 614 | fn eq(&self, other: &Self) -> bool { |
| 615 | // PartialEq must be consistent with PartialOrd |
| 616 | self.cmp(other) == Ordering::Equal |
| 617 | } |
| 618 | } |
| 619 | impl Eq for CompareByRangeSize {} |
| 620 | impl Deref for CompareByRangeSize { |