(self, other: Self)
| 172 | use ascent::{Lattice, Dual}; |
| 173 | impl Lattice for Pattern { |
| 174 | fn meet(self, other: Self) -> Self { |
| 175 | self.min(other) |
| 176 | } |
| 177 | fn join(self, other: Self) -> Self { |
| 178 | self.max(other) |
| 179 | } |
nothing calls this directly
no outgoing calls
no test coverage detected