R/list_package_functions.R

Defines functions list_functions

Documented in list_functions

#' List all functions exported when loading a package
#'
#' @param package.name characer string giving the name of the package
#'
#' @return character vector with names of functions exported
#' @export
#'

list_functions <- function(package.name)
{
  str = paste("package:", package.name, sep="")
  print(ls(str))
}
jlivsey/livsey documentation built on Oct. 17, 2024, 3:18 a.m.