Return an iterator over the join keys in this set
(&self)
| 130 | |
| 131 | /// Return an iterator over the join keys in this set |
| 132 | pub fn iter(&self) -> impl Iterator<Item = (&Expr, &Expr)> { |
| 133 | self.inner.iter().map(|(l, r)| (l, r)) |
| 134 | } |
| 135 | } |
| 136 | |
| 137 | /// Custom comparison operation to avoid copying owned values |