我正在尝试为我创建的对象定义“c”方法。
就像是
setMethod("c",
signature(...),
definition=function (...) {
myObject = list(...)[[1]]
myObject@mySlot=lapply(list(...), FUN = function(x) slot(x, "mySlot"))
return(myObject)
}
)
问题是我无法定义 ... 的类,以便正确完成调度。任何想法?