我正在编写一个新的S4类,其中包含另一个包中另一个类的插槽:
#' Example 1
#' @slot A0 variable A0
#' @slot B0 variable B0
#' @exportClass Ex1
setClass("Ex1", slots=c(A0 = "matrix", B0 = "matrix"),
prototype=prototype(A0 = matrix(),
B0 = matrix()))
# and in another package:
#' Example 2
#' @slot A variable A
#' @slot B variable B
#' @exportClass Ex2
setClass("Ex2", slots=c(A = "matrix", B = "matrix"),
prototype=prototype(A = matrix(),
B = matrix()),
contains = c("Ex1"))
使用roxygen2,我希望类Ex2继承Ex1类的插槽文档。我知道您可以使用@inheritParams package::function
为参数执行此操作。 S4插槽是否有相同的方式?