R/AllGenerics.R
R/coerceToList-methods.R
coerceToList.Rd
Coerce to list
coerceToList(object, ...) # S4 method for Annotated coerceToList(object)
Object.
Additional arguments.
list.
list
Don't attempt to defined methods for as.list().
as.list()
Updated 2021-10-14.
Refer to the S4Vectors package for details.
help(topic = "Annotated-class", package = "S4Vectors")
help(topic = "List-class", package = "S4Vectors")
showClass("Annnotated").
showClass("Annnotated")
showClass("List").
showClass("List")
methods::coerce.
methods::coerce
data(DFrame, package = "AcidTest") ## Annotated ==== object <- DFrame is(object, "Annotated") #> [1] TRUE object <- coerceToList(object) class(object) #> [1] "list" names(object) #> [1] "rownames" "nrows" "elementType" "elementMetadata" #> [5] "metadata" "listData"