summaryrefslogtreecommitdiffstats
path: root/src/arrow/r/man/arrow_available.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/arrow_available.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/arrow_available.Rd')
-rw-r--r--src/arrow/r/man/arrow_available.Rd47
1 files changed, 47 insertions, 0 deletions
diff --git a/src/arrow/r/man/arrow_available.Rd b/src/arrow/r/man/arrow_available.Rd
new file mode 100644
index 000000000..3061d10dc
--- /dev/null
+++ b/src/arrow/r/man/arrow_available.Rd
@@ -0,0 +1,47 @@
+% Generated by roxygen2: do not edit by hand
+% Please edit documentation in R/arrow-package.R
+\name{arrow_available}
+\alias{arrow_available}
+\alias{arrow_with_dataset}
+\alias{arrow_with_parquet}
+\alias{arrow_with_s3}
+\alias{arrow_with_json}
+\title{Is the C++ Arrow library available?}
+\usage{
+arrow_available()
+
+arrow_with_dataset()
+
+arrow_with_parquet()
+
+arrow_with_s3()
+
+arrow_with_json()
+}
+\value{
+\code{TRUE} or \code{FALSE} depending on whether the package was installed
+with:
+\itemize{
+\item The Arrow C++ library (check with \code{arrow_available()})
+\item Arrow Dataset support enabled (check with \code{arrow_with_dataset()})
+\item Parquet support enabled (check with \code{arrow_with_parquet()})
+\item JSON support enabled (check with \code{arrow_with_json()})
+\item Amazon S3 support enabled (check with \code{arrow_with_s3()})
+}
+}
+\description{
+You won't generally need to call these function, but they're made available
+for diagnostic purposes.
+}
+\examples{
+arrow_available()
+arrow_with_dataset()
+arrow_with_parquet()
+arrow_with_json()
+arrow_with_s3()
+}
+\seealso{
+If any of these are \code{FALSE}, see
+\code{vignette("install", package = "arrow")} for guidance on reinstalling the
+package.
+}