R/generic_functions.R

Defines functions print.TDLM str.TDLM

#' @export
#' @method str TDLM
str.TDLM <- function(object, ...)
{
  args <- list(...)
  if(is.null(args$max.level))
  {
    args$max.level <- 2
  }
  NextMethod("str", object = object, max.level = args$max.level)
}

#' @export
#' @method print TDLM
print.TDLM <- function(x, ...)
{
  print(x$info)
}

Try the TDLM package in your browser

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

TDLM documentation built on June 8, 2025, 10:39 a.m.