(self)
| 3866 | } |
| 3867 | |
| 3868 | pub fn call_is_null(self) -> Self { |
| 3869 | self.call_unary(UnaryFunc::IsNull(func::IsNull)) |
| 3870 | } |
| 3871 | |
| 3872 | /// Calls AND with the given arguments. Simplifies if 0 or 1 args. |
| 3873 | pub fn variadic_and(mut args: Vec<HirScalarExpr>) -> HirScalarExpr { |
no test coverage detected