R/dplyr_hof.R
grapes-greater-than-grapes.RdInfix operator that allows a lambda expression to be composed in R and be
translated to Spark SQL equivalent using ' dbplyr::translate_sql functionalities
params %->% ...Notice when composing a lambda expression in R, the body of the lambda expression *must always be surrounded with parentheses*, otherwise a parsing error will occur.
if (FALSE) { # \dontrun{
a %->% (mean(a) + 1) # translates to <SQL> `a` -> (AVG(`a`) OVER () + 1.0)
.(a, b) %->% (a < 1 && b > 1) # translates to <SQL> `a`,`b` -> (`a` < 1.0 AND `b` > 1.0)
} # }