R/print.R

Defines functions print.waitress

#' @export
print.waitress <- function(x, ...) {

	if(is.null(x$id))
		x <- "A waitress on the whole screen."
	else
		x <- paste("A waitress applied to an object of id:", x$id)

	print(x, ...)
}

Try the waiter package in your browser

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

waiter documentation built on Jan. 3, 2022, 5:13 p.m.