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

Function bitwise_and

datafusion/expr/src/expr_fn.rs:201–207  ·  view source on GitHub ↗

Return a new expression with bitwise AND

(left: Expr, right: Expr)

Source from the content-addressed store, hash-verified

199
200/// Return a new expression with bitwise AND
201pub fn bitwise_and(left: Expr, right: Expr) -> Expr {
202 Expr::BinaryExpr(BinaryExpr::new(
203 Box::new(left),
204 Operator::BitwiseAnd,
205 Box::new(right),
206 ))
207}
208
209/// Return a new expression with bitwise OR
210pub fn bitwise_or(left: Expr, right: Expr) -> Expr {

Calls 2

newFunction · 0.85
BinaryExprClass · 0.70

Used in the wild real call sites across dependent graphs

searching dependent graphs…