R/print.locoh.selection.R

Defines functions print.locoh.selection

Documented in print.locoh.selection

#' Prints a locoh.selection object
#'
#' @param x An object of class locoh.selection
#' @param ... Other arguments
#'
#' @export

print.locoh.selection <- function(x, ...) {

    for (i in 1:length(x)) {
        cat(names(x)[i], ": ", paste(x[[i]], collapse=",", sep=""), "\n", sep="")
    }

}

Try the tlocoh.dev package in your browser

Any scripts or data that you put into this service are public.

tlocoh.dev documentation built on May 2, 2019, 5:20 p.m.