rlang (version 0.0.0.9000)

env_namespace: Get the namespace of a package.

Description

Namespaces are the environment where all the functions of a package live. The parent environments of namespaces are the imports environments, which contain all the functions imported from other packages.

Usage

env_namespace(pkg = NULL)
env_imports(pkg = NULL)

Arguments

pkg
The name of a package. If NULL, the surrounding namespace is returned, or an error is issued if not called within a namespace.

See Also

env_package()