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")))
}
bertcarnell/lhs documentation built on May 19, 2024, 7:16 a.m.