R/print.template.R

Defines functions print.template

Documented in print.template

#' Print method for class "template."
#'
#' @param x Object of class "template".
#' @param ... additional parameters.
#'
#' @return Template file content.
#'
#' @author Dennis Walvoort
#' 
#' @export
print.template <- function(x, ...) {
  cat("container containing the following template(s):\n")
  print(as.character(x))
}

Try the spup package in your browser

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

spup documentation built on May 1, 2020, 1:07 a.m.