R/getMMstat.R

#' getMMstat
#'
#' Allows to access the package internal \code{mmstat} environment.
#'
#' @param ... elements
#'
#' @return the choosen element
#' @export
#'
#' @examples
#' getMMstat('version')
getMMstat <- function (...) {
  ret  <- mmstat
  args <- list(...)
  for (i in seq(args)) ret <- ret[[args[[i]]]]
  ret
}

Try the mmstat4 package in your browser

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

mmstat4 documentation built on May 29, 2024, 11:15 a.m.