我在 S4 中使用 roxygen2 作为文档,由于某种原因,使用部分没有出现。我做了一个简单的例子来说明我的困惑:
#' Title
#'
#' @param x Temp
#'
#' @return Nothing of interest.
#'
#' @export
#' @docType methods
#' @rdname A-methods
setGeneric("A", function(x, ...){
cat("test\n")
standardGeneric("A")
})
#' @rdname A-methods
#' @aliases A,ANY,ANY-method
setMethod("A", "ANY", function(x, ...){
cat(class(x))
})
#END#