(&self, other: &Self)
| 602 | } |
| 603 | impl Ord for CompareByRangeSize { |
| 604 | fn cmp(&self, other: &Self) -> Ordering { |
| 605 | self.0.range_size().cmp(&other.0.range_size()) |
| 606 | } |
| 607 | } |
| 608 | impl PartialOrd for CompareByRangeSize { |
| 609 | fn partial_cmp(&self, other: &Self) -> Option<Ordering> { |
no test coverage detected