R/as.yaml.R

Defines functions `as.yaml`

`as.yaml` <-
function(x, line.sep = c('\n', '\r\n', '\r'), indent = 2, omap = FALSE,
         column.major = TRUE, unicode = TRUE, precision = getOption('digits'),
         indent.mapping.sequence = FALSE, handlers = NULL) {

  line.sep <- match.arg(line.sep)
  res <- .Call(C_serialize_to_yaml, x, line.sep, indent, omap, column.major,
               unicode, precision, indent.mapping.sequence, handlers,
               PACKAGE="yaml")
  Encoding(res) <- "UTF-8"
  res
}

Try the yaml package in your browser

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

yaml documentation built on Jan. 24, 2023, 1:09 a.m.