R/GenericMethods.R

#' Generic methods
#'
#' @author elh

setGeneric(
  name = "asset",
  def  = function(this,...)
  {
    standardGeneric("asset")
  }
)

setGeneric(
  name = "phi",
  def  = function(this,...)
  {
    standardGeneric("phi")
  }
)

setGeneric(
  name = "display",
  def = function(this)
  {
    standardGeneric("display")
  }
)

setGeneric(
  name = "concatenate",
  def = function(u1, u2)
  {
    standardGeneric("concatenate")
  }
)
gaspardcc/jumpyMerton documentation built on May 25, 2019, 5:24 p.m.