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 )

Kmisc documentation built on May 29, 2017, 1:43 p.m.

Related to getObjects in Kmisc...