Search notes:

R package: rlang

rlang provides tools to work with core language features of R and the tidyverse.

expr vs enexpr

library(rlang)

f_expr  <- function(ex) expr  (ex);
f_enexpr<- function(ex) enexpr(ex);

f_expr  (22 + x);
#
#  ex

f_enexpr(22 + x);
#
#  22 + x
Github repository about-r, path: /packages/rlang/expr-vs-enexpr.R

See also

R packages

Index