c.handl: combine many handl objects

View source: R/c-handl.R

c.handlR Documentation

combine many handl objects

Description

combine many handl objects

Usage

## S3 method for class 'handl'
c(...)

Arguments

...

one or more objects of class handl; see handl for more. all inputs must be of class handl. if the first input is not of class handl, you will not get back an object of class handl

Value

an object of class handl of length equal to number of handl objects passed in

Examples

z <- system.file('extdata/crossref.ris', package = "handlr")
cr <- ris_reader(z)
z <- system.file('extdata/peerj.ris', package = "handlr")
prj <- ris_reader(z)
res <- c(cr, prj)
res
invisible(lapply(bibtex_writer(res), cat, sep = "\n\n"))

ropensci/handlr documentation built on April 26, 2022, 7:37 a.m.