Return true if the set contains a join pair where left = right or right = left
(&self, left: &Expr, right: &Expr)
| 49 | /// Return true if the set contains a join pair |
| 50 | /// where left = right or right = left |
| 51 | pub fn contains(&self, left: &Expr, right: &Expr) -> bool { |
| 52 | self.inner.contains(&ExprPair::new(left, right)) |
| 53 | || self.inner.contains(&ExprPair::new(right, left)) |
| 54 | } |
| 55 | |
| 56 | /// Insert the join key `(left = right)` into the set if join pair `(right = |
| 57 | /// left)` is not already in the set |
no test coverage detected