R/utils-print_object.R

Defines functions print_object

# Simple printing of an object
# @param x object to be printed

print_object <- function(x, ...) {
  message( 'A ', red( class(x)[[1]] ), ' object: ' )
  print( attr_rm_all(unclass(x)), ... )
}
decisionpatterns/cache documentation built on June 15, 2020, 9:35 p.m.