(&self, other: &Self)
| 496 | impl differential_dataflow::lattice::Lattice for Timestamp { |
| 497 | #[inline] |
| 498 | fn join(&self, other: &Self) -> Self { |
| 499 | ::std::cmp::max(*self, *other) |
| 500 | } |
| 501 | #[inline] |
| 502 | fn meet(&self, other: &Self) -> Self { |
| 503 | ::std::cmp::min(*self, *other) |
no outgoing calls