R/print.R

Defines functions print.treedataList

Documented in print.treedataList

##' print information of a list of treedata objects
##'
##'
##' @title print
##' @param x a list of treedata objects
##' @param ... no used
##' @return message
##' @method print treedataList
##' @export
print.treedataList <- function(x, ...) {
    msg <- paste(length(x), "phylogenetic trees")
    cat(msg, "\n")
}
YuLab-SMU/treeio documentation built on May 15, 2024, 8:47 p.m.