(&self, other: &Self)
| 29 | use timely::order::PartialOrder; |
| 30 | impl<S: PartialOrder, T: PartialOrder> PartialOrder for Pair<S, T> { |
| 31 | fn less_equal(&self, other: &Self) -> bool { |
| 32 | self.first.less_equal(&other.first) && self.second.less_equal(&other.second) |
| 33 | } |
| 34 | } |
| 35 | |
| 36 | use timely::progress::timestamp::Refines; |