summaryrefslogtreecommitdiffstats
path: root/src/arrow/r/man/list_compute_functions.Rd
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-21 11:54:28 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-21 11:54:28 +0000
commite6918187568dbd01842d8d1d2c808ce16a894239 (patch)
tree64f88b554b444a49f656b6c656111a145cbbaa28 /src/arrow/r/man/list_compute_functions.Rd
parentInitial commit. (diff)
downloadceph-e6918187568dbd01842d8d1d2c808ce16a894239.tar.xz
ceph-e6918187568dbd01842d8d1d2c808ce16a894239.zip
Adding upstream version 18.2.2.upstream/18.2.2
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/arrow/r/man/list_compute_functions.Rd')
-rw-r--r--src/arrow/r/man/list_compute_functions.Rd45
1 files changed, 45 insertions, 0 deletions
diff --git a/src/arrow/r/man/list_compute_functions.Rd b/src/arrow/r/man/list_compute_functions.Rd
new file mode 100644
index 000000000..45e033836
--- /dev/null
+++ b/src/arrow/r/man/list_compute_functions.Rd
@@ -0,0 +1,45 @@
+% Generated by roxygen2: do not edit by hand
+% Please edit documentation in R/compute.R
+\name{list_compute_functions}
+\alias{list_compute_functions}
+\title{List available Arrow C++ compute functions}
+\usage{
+list_compute_functions(pattern = NULL, ...)
+}
+\arguments{
+\item{pattern}{Optional regular expression to filter the function list}
+
+\item{...}{Additional parameters passed to \code{grep()}}
+}
+\value{
+A character vector of available Arrow C++ function names
+}
+\description{
+This function lists the names of all available Arrow C++ library compute functions.
+These can be called by passing to \code{\link[=call_function]{call_function()}}, or they can be
+called by name with an \code{arrow_} prefix inside a \code{dplyr} verb.
+}
+\details{
+The resulting list describes the capabilities of your \code{arrow} build.
+Some functions, such as string and regular expression functions,
+require optional build-time C++ dependencies. If your \code{arrow} package
+was not compiled with those features enabled, those functions will
+not appear in this list.
+
+Some functions take options that need to be passed when calling them
+(in a list called \code{options}). These options require custom handling
+in C++; many functions already have that handling set up but not all do.
+If you encounter one that needs special handling for options, please
+report an issue.
+
+Note that this list does \emph{not} enumerate all of the R bindings for these functions.
+The package includes Arrow methods for many base R functions that can
+be called directly on Arrow objects, as well as some tidyverse-flavored versions
+available inside \code{dplyr} verbs.
+}
+\examples{
+\dontshow{if (arrow_available()) (if (getRversion() >= "3.4") withAutoprint else force)(\{ # examplesIf}
+available_funcs <- list_compute_functions()
+utf8_funcs <- list_compute_functions(pattern = "^UTF8", ignore.case = TRUE)
+\dontshow{\}) # examplesIf}
+}