R/print.R

Defines functions print.gs_design

# Simple print methods to suppress printing the list element `input` to the
# console

#' @export
print.gs_design <- function(x, ...) {
  print(x[names(x) != "input"])
  invisible(x)
}

#' @export
print.fixed_design <- print.gs_design

Try the gsDesign2 package in your browser

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

gsDesign2 documentation built on Nov. 20, 2025, 1:07 a.m.