c.handl: combine many handl objects

Description Usage Arguments Value Examples

View source: R/c-handl.R

Description

combine many handl objects

Usage

1
2
## 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

1
2
3
4
5
6
7
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"))

handlr documentation built on Jan. 13, 2021, 7:27 a.m.