(self)
| 1876 | } |
| 1877 | |
| 1878 | pub fn negate(self) -> Self { |
| 1879 | if let HirRelationExpr::Negate { input } = self { |
| 1880 | *input |
| 1881 | } else { |
| 1882 | HirRelationExpr::Negate { |
| 1883 | input: Box::new(self), |
| 1884 | } |
| 1885 | } |
| 1886 | } |
| 1887 | |
| 1888 | pub fn distinct(self) -> Self { |
| 1889 | if let HirRelationExpr::Distinct { .. } = self { |
no outgoing calls
no test coverage detected