MCPcopy Create free account
hub / github.com/apache/datafusion / and

Method and

datafusion/expr/src/expr.rs:1722–1724  ·  view source on GitHub ↗

Return `self && other`

(self, other: Expr)

Source from the content-addressed store, hash-verified

1720
1721 /// Return `self && other`
1722 pub fn and(self, other: Expr) -> Expr {
1723 binary_expr(self, Operator::And, other)
1724 }
1725
1726 /// Return `self || other`
1727 pub fn or(self, other: Expr) -> Expr {

Calls 1

binary_exprFunction · 0.70