Learn R Programming

handlr (version 0.3.1)

c.handl: combine many handl objects

Description

combine many handl objects

Usage

# S3 method for handl
c(...)

Value

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

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

Examples

Run this code
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"))

Run the code above in your browser using DataLab