scoped_interactive {rlang} | R Documentation |
scoped_
functionsThese functions have been renamed to use the conventional local_
prefix. They will be deprecated in the next minor version of rlang.
scoped_interactive(value = TRUE, frame = caller_env()) scoped_options(..., .frame = caller_env()) scoped_bindings(..., .env = .frame, .frame = caller_env())
value |
A single |
frame |
The environment of a running function which defines the scope of the temporary options. When the function returns, the options are reset to their original values. |
... |
For |
.frame |
The environment of a stack frame which defines the scope of the temporary options. When the frame returns, the options are set back to their original values. |
.env |
An environment. |