R/proto.R

Defines functions print.proto pprint summary.proto

#' @S3method print proto
print.proto <- function(x, ...) {
  x$pprint(...)
}



pprint <- function (x, ...) {
  print(as.list(x), ...)
}



#' @S3method summary proto
summary.proto <- function(object, ...) {
  object$psummary(...)
}

Try the benchmark package in your browser

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

benchmark documentation built on May 30, 2017, 5:20 a.m.