Deprecated lifecycle

As of rlang 0.3.0, env_bind_exprs() and env_bind_fns() have been renamed to env_bind_lazy() and env_bind_active() for consistency.

env_bind_exprs(.env, ..., .eval_env = caller_env())

env_bind_fns(.env, ...)

Arguments

.env

An environment.

...

<dynamic> Named objects (env_bind()), expressions env_bind_lazy(), or functions (env_bind_active()). Use zap() to remove bindings.

.eval_env

The environment where the expressions will be evaluated when the symbols are forced.