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
##' @export
silent <- function(...) suppressMessages(library(...))
GarrettMooney/moonmisc documentation built on Oct. 19, 2019, 7:51 p.m.