R/rds.R

Defines functions qread.rds qwrite.rds

#' @method qread rds
#' @export
qread.rds <- function(file, type, ...) {
	base::readRDS(file, ...)
}

#' @method qwrite rds
#' @export
qwrite.rds <- function(x, file, type, ...) {
	base::saveRDS(x, file, ...)
}

Try the io package in your browser

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

io documentation built on Dec. 18, 2019, 1:39 a.m.