This function returns a list of all the functions (exported and internal)
available with the project. As this function scans the NAMESPACE and the
R/ folder, it is recommended to:
store all the functions in the
R/folderrun
devtools::document()before to update theNAMESPACE
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_available_gh_actions(),
get_available_issue_templates(),
get_available_licenses(),
get_minimal_r_version()
Examples
if (FALSE) { # \dontrun{
## Update NAMESPACE ----
devtools::document()
## List all implemented functions ----
get_all_functions()
} # }
