Learn R Programming

box.linters (version 0.10.6)

get_box_module_exports: Get a list of functions and data objects exported by a local box module

Description

An implementation for box modules to provide similar functionality as getNamespaceExports() for libraries/packages.

Usage

get_box_module_exports(declaration, alias = "", caller = globalenv())

Value

A list of exported functions and data objects.

Arguments

declaration

The mod or package call expression. See box:::parse_spec() source code for more details.

alias

Mod or package-level alias as a character string. See box:::parse_spec() source code for more details. Default is fine for box.linters use.

caller

The environment from which box::use was invoked. Default is fine for box.linters use.

See Also