R/show_functions.R

#' @include module_class.R
# Show functions should return NULL invisibly.
# Always call print() internally.
NULL

#' @aliases show,module-method
#' @docType methods
#' @rdname show-methods
setMethod("show", "module", function(object) {
  print(object)
  return(invisible(NULL))
})

Try the maat package in your browser

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

maat documentation built on May 18, 2022, 9:07 a.m.