Displaying 1 result from an estimated 1 matches for "showsself".
Did you mean:
showself
2012 Aug 06
1
OO code organization
Greetings,
I am using S4 classes and the code is organized by putting each class into a separate source file
in a separate folder:
In Folder base/base.R: defines class "base" and does
setGeneric("showSelf",
function(this) standardGeneric("showSelf")
)
setMethod("showSelf",
signature(this="base"),
definition=
function(this){ ... }
)