Hi,
How do I document setReplaceMethod, such as this,
setGeneric("x<-", function(.Object, value) standardGeneric("myMethod<-"))
setReplaceMethod("x", "myClass",
function(.Object, value) {
.Object at x <- value
.Object
}
)
in the NAMESPACE file?
Thanks,
Jennifer