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

Function bitwise_xor

datafusion/expr/src/expr_fn.rs:219–225  ·  view source on GitHub ↗

Return a new expression with bitwise XOR

(left: Expr, right: Expr)

Source from the content-addressed store, hash-verified

217
218/// Return a new expression with bitwise XOR
219pub fn bitwise_xor(left: Expr, right: Expr) -> Expr {
220 Expr::BinaryExpr(BinaryExpr::new(
221 Box::new(left),
222 Operator::BitwiseXor,
223 Box::new(right),
224 ))
225}
226
227/// Return a new expression with bitwise SHIFT RIGHT
228pub fn bitwise_shift_right(left: Expr, right: Expr) -> Expr {

Callers 1

Calls 2

newFunction · 0.85
BinaryExprClass · 0.70

Tested by 1

Used in the wild real call sites across dependent graphs

searching dependent graphs…