getObjects: Get all Objects in Environment

Description Usage Arguments Value Examples

View source: R/misc.R

Description

Get all objects within an environment. Useful for inspecting the objects available in a particular environment.

Usage

1

Arguments

env

an environment.

Value

a list of the objects contained within that environment.

Examples

1
2
3
4
myenv <- new.env()
assign( "foo", "bar", env=myenv )
assign( "baz", "spam", env=myenv )
getObjects( myenv )

kevinushey/Kmisc documentation built on May 20, 2019, 9:08 a.m.