metaExpr {shinymeta} | R Documentation |
Mark an expression as a meta-expression
Description
Mark an expression as a meta-expression
Usage
metaExpr(
expr,
env = parent.frame(),
quoted = FALSE,
localize = "auto",
bindToReturn = FALSE
)
Arguments
expr |
An expression (quoted or unquoted). |
env |
An environment. |
quoted |
Is the expression quoted? This is useful when you want to use an expression
that is stored in a variable; to do so, it must be quoted with |
localize |
Whether or not to wrap the returned expression in |
bindToReturn |
For non- |
Value
If inside meta mode, a quoted form of expr
for use inside of
metaReactive2()
, metaObserve2()
, or metaRender2()
. Otherwise, in
normal execution, the result of evaluating expr
.
See Also
metaReactive2()
, metaObserve2()
, metaRender2()
, ..