R/list.R

Defines functions qread.list qwrite.list

#' @method qread list
#' @export
qread.list <- function(file, type, ...) {
	qread.yaml(file, type, ...)
}

#' @method qwrite list
#' @export
qwrite.list <- function(x, file, type, ...) {
	qwrite.yaml(x, file, type, ...)
}

#' @method qread lst
#' @export
qread.lst <- qread.list;

#' @method qwrite lst
#' @export
qwrite.lst <- qwrite.list;

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.