From e6918187568dbd01842d8d1d2c808ce16a894239 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 21 Apr 2024 13:54:28 +0200 Subject: Adding upstream version 18.2.2. Signed-off-by: Daniel Baumann --- src/arrow/r/man/Codec.Rd | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 src/arrow/r/man/Codec.Rd (limited to 'src/arrow/r/man/Codec.Rd') diff --git a/src/arrow/r/man/Codec.Rd b/src/arrow/r/man/Codec.Rd new file mode 100644 index 000000000..86723aed5 --- /dev/null +++ b/src/arrow/r/man/Codec.Rd @@ -0,0 +1,24 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/compression.R +\docType{class} +\name{Codec} +\alias{Codec} +\title{Compression Codec class} +\description{ +Codecs allow you to create \link[=compression]{compressed input and output streams}. +} +\section{Factory}{ + +The \code{Codec$create()} factory method takes the following arguments: +\itemize{ +\item \code{type}: string name of the compression method. Possible values are +"uncompressed", "snappy", "gzip", "brotli", "zstd", "lz4", "lzo", or +"bz2". \code{type} may be upper- or lower-cased. Not all methods may be +available; support depends on build-time flags for the C++ library. +See \code{\link[=codec_is_available]{codec_is_available()}}. Most builds support at least "snappy" and +"gzip". All support "uncompressed". +\item \code{compression_level}: compression level, the default value (\code{NA}) uses the +default compression level for the selected compression \code{type}. +} +} + -- cgit v1.2.3