R/load.R

Defines functions silent

Documented in silent

##' Silently attach a library to the search path.
##'
##' This function wraps \code{suppressMessages} around the call to
##' \code{library}
##' @title Silently load a library
##' @param ... Passed though
##' @return Nothing, but the desired library is attached
##' @author Dirk Eddelbuettel
silent <- function(...) suppressMessages(library(...))

Try the dang package in your browser

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

dang documentation built on Oct. 30, 2021, 1:08 a.m.