Nothing
#' @include internal.R
NULL
#' @title Print
#'
#' @description Displays information about an object.
#'
#' @param x Any object.
#' @param ... Not used.
#'
#' @name print
#'
#' @return None.
#'
#' @seealso [base::print()].
#'
#' @aliases print
NULL
#' @rdname print
#' @method print Data
#' @export
print.Data <- function(x, ...) x$print()
#' @rdname print
#' @method print OptimizationProblem
#' @export
print.OptimizationProblem <- function(x, ...) x$print()
#' @rdname print
#' @method print Solution
#' @export
print.Solution <- function(x, ...) x$print()
#' @rdname print
#' @method print Portfolio
#' @export
print.Portfolio <- function(x, ...) x$print()
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.