Learn R Programming

rcompendium (version 1.3)

get_all_functions: List all functions in the package

Description

This function returns a list of all the functions (exported and internal) available with the package. As this function scans the NAMESPACE and the R/ folder, it is recommended to run devtools::document() before.

Usage

get_all_functions()

Arguments

Value

A list of two vectors:

  • external, a vector of exported functions name;

  • internal, a vector of internal functions name.

See Also

Other utilities functions: get_all_dependencies(), get_licenses(), get_minimal_r_version()

Examples

Run this code
if (FALSE) {
## Update NAMESPACE ----
devtools::document()

## List all implemented functions ----
get_all_functions()
}

Run the code above in your browser using DataLab