get_env {teal.code}R Documentation

Access environment included in qenv

Description

The access of environment included in qenv@env allows to e.g. list object names included in qenv@env slot.

Usage

get_env(object)

Arguments

object

(qenv)

Value

An environment stored in qenv@env slot.

Examples

q <- qenv()
q1 <- within(q, {
  a <- 5
  b <- data.frame(x = 1:10)
})
get_env(q1)
ls(get_env(q1))


[Package teal.code version 0.5.0 Index]