R/class.R

#S4-class definition
setClass( "q2", representation( result="list", output="list" ) )
setMethod("show", "q2", function(object) func.output.performanceValues(object@result, object@output) )

setClass( "cvq2", contains = "q2" )

#  setMethod("[", "cvq2", function(x, i, j, ..., drop) { x@result <- x@result[i]; x })
#  setMethod("@",...) ???

Try the cvq2 package in your browser

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

cvq2 documentation built on May 2, 2019, 8:29 a.m.