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

Function bitwise_shift_left

datafusion/expr/src/expr_fn.rs:237–243  ·  view source on GitHub ↗

Return a new expression with bitwise SHIFT LEFT

(left: Expr, right: Expr)

Source from the content-addressed store, hash-verified

235
236/// Return a new expression with bitwise SHIFT LEFT
237pub fn bitwise_shift_left(left: Expr, right: Expr) -> Expr {
238 Expr::BinaryExpr(BinaryExpr::new(
239 Box::new(left),
240 Operator::BitwiseShiftLeft,
241 Box::new(right),
242 ))
243}
244
245/// Create an in_list expression
246pub fn in_list(expr: Expr, list: Vec<Expr>, negated: bool) -> 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…