Print functions within a package

see_pkg_funcs(package, all.names = FALSE)

Arguments

package

R package to inspect

all.names

logical value. If TRUE, all object names are returned. If FALSE, names which begin with a . are omitted.

Details

This is a helper to let me see the different functions offered by a package. NOTE: The package most be installed & loaded (i.e. library(janitor))

Examples

library(learylib) see_pkg_funcs(learylib)
#> [1] "copy_to_clipboard" "not_in" "not_na" #> [4] "rprofile_clear" "rprofile_update" "search_last_error" #> [7] "see_lib_paths" "see_pkg_funcs" "theme_leary"