R/get_library_versions.R

Defines functions get_library_versions

Documented in get_library_versions

# Copyright 2020 Robert Carnell

#' Get version information for all libraries in the lhs package
#'
#' @return a character string containing the versions
#' @export
#'
#' @importFrom utils packageVersion
#'
#' @examples
#' get_library_versions()
get_library_versions <- function()
{
  return(paste(.Call("get_library_versions", PACKAGE = "lhs"), "lhs:", utils::packageVersion("lhs")))
}

Try the lhs package in your browser

Any scripts or data that you put into this service are public.

lhs documentation built on Dec. 28, 2022, 2:59 a.m.