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

Function bitwise_shift_right

datafusion/expr/src/expr_fn.rs:228–234  ·  view source on GitHub ↗

Return a new expression with bitwise SHIFT RIGHT

(left: Expr, right: Expr)

Source from the content-addressed store, hash-verified

226
227/// Return a new expression with bitwise SHIFT RIGHT
228pub fn bitwise_shift_right(left: Expr, right: Expr) -> Expr {
229 Expr::BinaryExpr(BinaryExpr::new(
230 Box::new(left),
231 Operator::BitwiseShiftRight,
232 Box::new(right),
233 ))
234}
235
236/// Return a new expression with bitwise SHIFT LEFT
237pub fn bitwise_shift_left(left: Expr, right: Expr) -> Expr {

Callers 1

grouping_function_on_idFunction · 0.85

Calls 2

newFunction · 0.85
BinaryExprClass · 0.70

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…