| expr_function {duckdb} | R Documentation |
Create a function call expression
expr_function(name, args)
name |
the function name |
args |
the a list of expressions for the function arguments |
a function call expression
call_expr <- expr_function("ABS", list(expr_constant(-42)))