用于转换自定义 S4 的 R `as` 方法 class

R `as` method for converting custom S4 class

我正在开发一个 R 包并希望包含一个函数来覆盖 igraph::as.igraph() 并允许用户将我的自定义 class 转换为 igraph::igraph 对象。正确的做法是什么?

从 igraph 包中导入泛型,并为您的 class.

导出方法
#' @importFrom igraph as.igraph
NULL

#' @export
as.igraph.yourclass <- function(x, ...)
{
    your code here
}