From 2e5480ab0914c547b71e4e5a76f756bfe897b8e7 Mon Sep 17 00:00:00 2001 From: Benjamin Kietzman Date: Tue, 18 Feb 2020 11:03:14 -0500 Subject: [PATCH] add support for batch_size to InMemorySource --- cpp/src/arrow/dataset/dataset.cc | 30 +- cpp/src/arrow/dataset/dataset.h | 19 +- cpp/src/arrow/dataset/dataset_test.cc | 29 +- cpp/src/arrow/dataset/discovery_test.cc | 2 +- cpp/src/arrow/dataset/file_base.cc | 2 +- cpp/src/arrow/dataset/scanner.cc | 5 + cpp/src/arrow/dataset/scanner.h | 9 +- cpp/src/arrow/dataset/scanner_test.cc | 23 +- python/pyarrow/_dataset.pyx | 19 +- python/pyarrow/includes/libarrow_dataset.pxd | 21 +- r/R/arrowExports.R | 4 + r/R/dataset.R | 6 + r/src/arrowExports.cpp | 8738 +++++++----------- r/src/dataset.cpp | 6 + 14 files changed, 3584 insertions(+), 5329 deletions(-) diff --git a/cpp/src/arrow/dataset/dataset.cc b/cpp/src/arrow/dataset/dataset.cc index 000e97ab84d36..36098eb105f8e 100644 --- a/cpp/src/arrow/dataset/dataset.cc +++ b/cpp/src/arrow/dataset/dataset.cc @@ -32,6 +32,10 @@ namespace dataset { Fragment::Fragment(std::shared_ptr scan_options) : scan_options_(std::move(scan_options)), partition_expression_(scalar(true)) {} +const std::shared_ptr& Fragment::schema() const { + return scan_options_->schema(); +} + InMemoryFragment::InMemoryFragment( std::vector> record_batches, std::shared_ptr scan_options) @@ -99,9 +103,33 @@ FragmentIterator Source::GetFragments(std::shared_ptr scan_options) return GetFragmentsImpl(std::move(simplified_scan_options)); } +InMemorySource::InMemorySource(std::shared_ptr schema, + std::vector> batches) + : Source(std::move(schema)), + get_batches_([batches] { return MakeVectorIterator(batches); }) {} + +InMemorySource::InMemorySource(std::shared_ptr table) + : Source(table->schema()), get_batches_([table] { + auto reader = std::make_shared(*table); + return MakeFunctionIterator([reader, table] { return reader->Next(); }); + }) {} + FragmentIterator InMemorySource::GetFragmentsImpl( std::shared_ptr scan_options) { - return MakeVectorIterator(fragments_); + auto create_batch = + [scan_options](std::shared_ptr batch) -> std::shared_ptr { + std::vector> batches; + + while (batch->num_rows() > scan_options->batch_size) { + batches.push_back(batch->Slice(0, scan_options->batch_size)); + batch = batch->Slice(scan_options->batch_size); + } + batches.push_back(std::move(batch)); + + return std::make_shared(std::move(batches), scan_options); + }; + + return MakeMapIterator(std::move(create_batch), get_batches_()); } FragmentIterator TreeSource::GetFragmentsImpl(std::shared_ptr options) { diff --git a/cpp/src/arrow/dataset/dataset.h b/cpp/src/arrow/dataset/dataset.h index 33d6a8a689cd9..6b8fabe623ec6 100644 --- a/cpp/src/arrow/dataset/dataset.h +++ b/cpp/src/arrow/dataset/dataset.h @@ -17,6 +17,7 @@ #pragma once +#include #include #include #include @@ -47,7 +48,9 @@ class ARROW_DS_EXPORT Fragment { /// scanning this fragment. May be nullptr, which indicates that no filtering /// or schema reconciliation will be performed and all partitions will be /// scanned. - std::shared_ptr scan_options() const { return scan_options_; } + const std::shared_ptr& scan_options() const { return scan_options_; } + + const std::shared_ptr& schema() const; virtual ~Fragment() = default; @@ -128,15 +131,23 @@ class ARROW_DS_EXPORT Source { /// \brief A Source consisting of a flat sequence of Fragments class ARROW_DS_EXPORT InMemorySource : public Source { public: - explicit InMemorySource(std::shared_ptr schema, FragmentVector fragments) - : Source(std::move(schema)), fragments_(std::move(fragments)) {} + using RecordBatchGenerator = std::function; + + InMemorySource(std::shared_ptr schema, RecordBatchGenerator get_batches) + : Source(std::move(schema)), get_batches_(std::move(get_batches)) {} + + // Convenience constructor taking a fixed list of batches + InMemorySource(std::shared_ptr schema, + std::vector> batches); + + explicit InMemorySource(std::shared_ptr
table); FragmentIterator GetFragmentsImpl(std::shared_ptr options) override; std::string type_name() const override { return "in-memory"; } private: - FragmentVector fragments_; + RecordBatchGenerator get_batches_; }; /// \brief A recursive Source with child Sources. diff --git a/cpp/src/arrow/dataset/dataset_test.cc b/cpp/src/arrow/dataset/dataset_test.cc index ff2bc18655f69..a437c1a769ae9 100644 --- a/cpp/src/arrow/dataset/dataset_test.cc +++ b/cpp/src/arrow/dataset/dataset_test.cc @@ -33,6 +33,8 @@ namespace dataset { class TestInMemoryFragment : public DatasetFixtureMixin {}; +using RecordBatchVector = std::vector>; + TEST_F(TestInMemoryFragment, Scan) { constexpr int64_t kBatchSize = 1024; constexpr int64_t kNumberBatches = 16; @@ -51,21 +53,18 @@ TEST_F(TestInMemoryFragment, Scan) { class TestInMemorySource : public DatasetFixtureMixin {}; TEST_F(TestInMemorySource, GetFragments) { - constexpr int64_t kNumberFragments = 4; constexpr int64_t kBatchSize = 1024; constexpr int64_t kNumberBatches = 16; SetSchema({field("i32", int32()), field("f64", float64())}); auto batch = ConstantArrayGenerator::Zeroes(kBatchSize, schema_); - auto reader = ConstantArrayGenerator::Repeat(kNumberBatches * kNumberFragments, batch); + auto reader = ConstantArrayGenerator::Repeat(kNumberBatches, batch); - std::vector> batches{static_cast(kNumberBatches), - batch}; + RecordBatchVector batches{static_cast(kNumberBatches), batch}; auto fragment = std::make_shared(batches, options_); // It is safe to copy fragment multiple time since Scan() does not consume // the internal array. - auto source = - InMemorySource(schema_, {static_cast(kNumberFragments), fragment}); + auto source = InMemorySource(schema_, {static_cast(kNumberBatches), batch}); AssertSourceEquals(reader.get(), &source); } @@ -74,7 +73,6 @@ class TestTreeSource : public DatasetFixtureMixin {}; TEST_F(TestTreeSource, GetFragments) { constexpr int64_t kBatchSize = 1024; - constexpr int64_t kNumberBatches = 16; constexpr int64_t kChildPerNode = 2; constexpr int64_t kCompleteBinaryTreeDepth = 4; @@ -82,17 +80,13 @@ TEST_F(TestTreeSource, GetFragments) { auto batch = ConstantArrayGenerator::Zeroes(kBatchSize, schema_); auto n_leaves = 1U << kCompleteBinaryTreeDepth; - auto reader = ConstantArrayGenerator::Repeat(kNumberBatches * n_leaves, batch); - - std::vector> batches{static_cast(kNumberBatches), - batch}; - auto fragment = std::make_shared(batches, options_); + auto reader = ConstantArrayGenerator::Repeat(n_leaves, batch); // Creates a complete binary tree of depth kCompleteBinaryTreeDepth where the // leaves are InMemorySource containing kChildPerNode fragments. auto l1_leaf_source = std::make_shared( - schema_, FragmentVector{static_cast(kChildPerNode), fragment}); + schema_, RecordBatchVector{static_cast(kChildPerNode), batch}); auto l2_leaf_tree_source = std::make_shared( schema_, SourceVector{static_cast(kChildPerNode), l1_leaf_source}); @@ -109,7 +103,6 @@ TEST_F(TestTreeSource, GetFragments) { class TestDataset : public DatasetFixtureMixin {}; TEST_F(TestDataset, TrivialScan) { - constexpr int64_t kNumberFragments = 4; constexpr int64_t kNumberBatches = 16; constexpr int64_t kBatchSize = 1024; @@ -118,15 +111,13 @@ TEST_F(TestDataset, TrivialScan) { std::vector> batches{static_cast(kNumberBatches), batch}; - auto fragment = std::make_shared(batches, options_); - FragmentVector fragments{static_cast(kNumberFragments), fragment}; SourceVector sources = { - std::make_shared(schema_, fragments), - std::make_shared(schema_, fragments), + std::make_shared(schema_, batches), + std::make_shared(schema_, batches), }; - const int64_t total_batches = sources.size() * kNumberFragments * kNumberBatches; + const int64_t total_batches = sources.size() * kNumberBatches; auto reader = ConstantArrayGenerator::Repeat(total_batches, batch); ASSERT_OK_AND_ASSIGN(auto dataset, Dataset::Make(sources, schema_)); diff --git a/cpp/src/arrow/dataset/discovery_test.cc b/cpp/src/arrow/dataset/discovery_test.cc index d464b01e564db..f117e583f2850 100644 --- a/cpp/src/arrow/dataset/discovery_test.cc +++ b/cpp/src/arrow/dataset/discovery_test.cc @@ -67,7 +67,7 @@ class MockSourceFactory : public SourceFactory { Result> Finish(const std::shared_ptr& schema) override { return std::make_shared(schema, - std::vector>{}); + std::vector>{}); } protected: diff --git a/cpp/src/arrow/dataset/file_base.cc b/cpp/src/arrow/dataset/file_base.cc index cb4ab89cd4f51..fcca3fb3e6a87 100644 --- a/cpp/src/arrow/dataset/file_base.cc +++ b/cpp/src/arrow/dataset/file_base.cc @@ -40,7 +40,7 @@ Result> FileSource::Open() const { } Result FileFragment::Scan(std::shared_ptr context) { - return format_->ScanFile(source_, scan_options_, context); + return format_->ScanFile(source_, scan_options_, std::move(context)); } FileSystemSource::FileSystemSource(std::shared_ptr schema, diff --git a/cpp/src/arrow/dataset/scanner.cc b/cpp/src/arrow/dataset/scanner.cc index 2ae4e86929a80..fc2df07d3f267 100644 --- a/cpp/src/arrow/dataset/scanner.cc +++ b/cpp/src/arrow/dataset/scanner.cc @@ -133,6 +133,11 @@ Status ScannerBuilder::UseThreads(bool use_threads) { return Status::OK(); } +Status ScannerBuilder::BatchSize(int64_t batch_size) { + options_->batch_size = batch_size; + return Status::OK(); +} + Result> ScannerBuilder::Finish() const { std::shared_ptr options; if (has_projection_ && !project_columns_.empty()) { diff --git a/cpp/src/arrow/dataset/scanner.h b/cpp/src/arrow/dataset/scanner.h index 361b01ec58f4e..664605e49f625 100644 --- a/cpp/src/arrow/dataset/scanner.h +++ b/cpp/src/arrow/dataset/scanner.h @@ -74,6 +74,9 @@ class ARROW_DS_EXPORT ScanOptions { // Projector for reconciling the final RecordBatch to the requested schema. RecordBatchProjector projector; + // Maximum row count for scanned batches. + int64_t batch_size = 64 << 10; + // Return a vector of fields that requires materialization. // // This is usually the union of the fields referenced in the projection and the @@ -90,9 +93,6 @@ class ARROW_DS_EXPORT ScanOptions { // sub-selection optimization. std::vector MaterializedFields() const; - // Maximum row count for scanned batches. - int64_t batch_size = 64 << 10; - private: explicit ScanOptions(std::shared_ptr schema); }; @@ -215,6 +215,9 @@ class ARROW_DS_EXPORT ScannerBuilder { /// ThreadPool found in ScanContext; Status UseThreads(bool use_threads = true); + /// \brief Set the maximum row count for scanned batches + Status BatchSize(int64_t batch_size); + /// \brief Return the constructed now-immutable Scanner object Result> Finish() const; diff --git a/cpp/src/arrow/dataset/scanner_test.cc b/cpp/src/arrow/dataset/scanner_test.cc index 804955b1311a7..d698c3edd7ce5 100644 --- a/cpp/src/arrow/dataset/scanner_test.cc +++ b/cpp/src/arrow/dataset/scanner_test.cc @@ -31,7 +31,6 @@ namespace dataset { class TestScanner : public DatasetFixtureMixin { protected: static constexpr int64_t kNumberSources = 2; - static constexpr int64_t kNumberFragments = 4; static constexpr int64_t kNumberBatches = 16; static constexpr int64_t kBatchSize = 1024; @@ -39,18 +38,16 @@ class TestScanner : public DatasetFixtureMixin { std::vector> batches{static_cast(kNumberBatches), batch}; - FragmentVector fragments{static_cast(kNumberFragments), - std::make_shared(batches, options_)}; - SourceVector sources{static_cast(kNumberSources), - std::make_shared(batch->schema(), fragments)}; + std::make_shared(batch->schema(), batches)}; return Scanner{sources, options_, ctx_}; } void AssertScannerEqualsRepetitionsOf(Scanner scanner, - std::shared_ptr batch) { - const int64_t total_batches = kNumberSources * kNumberBatches * kNumberFragments; + std::shared_ptr batch, + const int64_t total_batches = kNumberSources * + kNumberBatches) { auto expected = ConstantArrayGenerator::Repeat(total_batches, batch); // Verifies that the unified BatchReader is equivalent to flattening all the @@ -60,7 +57,6 @@ class TestScanner : public DatasetFixtureMixin { }; constexpr int64_t TestScanner::kNumberSources; -constexpr int64_t TestScanner::kNumberFragments; constexpr int64_t TestScanner::kNumberBatches; constexpr int64_t TestScanner::kBatchSize; @@ -70,12 +66,13 @@ TEST_F(TestScanner, Scan) { AssertScannerEqualsRepetitionsOf(MakeScanner(batch), batch); } -TEST_F(TestScanner, DISABLED_ScanWithCappedBatchSize) { - // TODO(bkietz) enable when InMemory* respects ScanOptions::batch_size +TEST_F(TestScanner, ScanWithCappedBatchSize) { SetSchema({field("i32", int32()), field("f64", float64())}); auto batch = ConstantArrayGenerator::Zeroes(kBatchSize, schema_); options_->batch_size = kBatchSize / 2; - AssertScannerEqualsRepetitionsOf(MakeScanner(batch), batch->Slice(kBatchSize / 2)); + auto expected = batch->Slice(kBatchSize / 2); + AssertScannerEqualsRepetitionsOf(MakeScanner(batch), expected, + kNumberSources * kNumberBatches * 2); } TEST_F(TestScanner, FilteredScan) { @@ -130,8 +127,8 @@ TEST_F(TestScanner, MaterializeMissingColumn) { TEST_F(TestScanner, ToTable) { SetSchema({field("i32", int32()), field("f64", float64())}); auto batch = ConstantArrayGenerator::Zeroes(kBatchSize, schema_); - std::vector> batches{ - kNumberBatches * kNumberFragments * kNumberSources, batch}; + std::vector> batches{kNumberBatches * kNumberSources, + batch}; std::shared_ptr
expected; ASSERT_OK(Table::FromRecordBatches(batches, &expected)); diff --git a/python/pyarrow/_dataset.pyx b/python/pyarrow/_dataset.pyx index ae19bba871e18..eb02fbe59049c 100644 --- a/python/pyarrow/_dataset.pyx +++ b/python/pyarrow/_dataset.pyx @@ -889,7 +889,7 @@ cdef class Dataset: return scanner.scan() def to_batches(self, columns=None, filter=None, - MemoryPool memory_pool=None): + batch_size=64*2**10, MemoryPool memory_pool=None): """Read the dataset as materialized record batches. Builds a scan operation against the dataset and sequentially executes @@ -911,6 +911,8 @@ cdef class Dataset: partition information or internal metadata found in the data source, e.g. Parquet statistics. Otherwise filters the loaded RecordBatches before yielding them. + batch_size : int, default 64*2**10 + The maximum row count for scanned record batches. memory_pool : MemoryPool, default None For memory allocations, if required. If not specified, uses the default pool. @@ -920,13 +922,13 @@ cdef class Dataset: record_batches : iterator of RecordBatch """ scanner = Scanner(self, columns=columns, filter=filter, - memory_pool=memory_pool) + batch_size=batch_size, memory_pool=memory_pool) for task in scanner.scan(): for batch in task.execute(): yield batch def to_table(self, columns=None, filter=None, use_threads=True, - MemoryPool memory_pool=None): + batch_size=64*2**10, MemoryPool memory_pool=None): """Read the dataset to an arrow table. Note that this method reads all the selected data from the dataset @@ -951,6 +953,8 @@ cdef class Dataset: use_threads : boolean, default True If enabled, then maximum paralellism will be used determined by the number of available CPU cores. + batch_size : int, default 64*2**10 + The maximum row count for scanned record batches. memory_pool : MemoryPool, default None For memory allocations, if required. If not specified, uses the default pool. @@ -960,7 +964,8 @@ cdef class Dataset: table : Table instance """ scanner = Scanner(self, columns=columns, filter=filter, - use_threads=use_threads, memory_pool=memory_pool) + use_threads=use_threads, batch_size=batch_size, + memory_pool=memory_pool) return scanner.to_table() @property @@ -1054,6 +1059,8 @@ cdef class Scanner: use_threads : boolean, default True If enabled, then maximum paralellism will be used determined by the number of available CPU cores. + batch_size : int, default 64*2**10 + The maximum row count for scanned record batches. memory_pool : MemoryPool, default None For memory allocations, if required. If not specified, uses the default pool. @@ -1065,7 +1072,7 @@ cdef class Scanner: def __init__(self, Dataset dataset, list columns=None, Expression filter=None, bint use_threads=True, - MemoryPool memory_pool=None): + int batch_size=64*2**10, MemoryPool memory_pool=None): cdef: shared_ptr[CScanContext] context shared_ptr[CScannerBuilder] builder @@ -1096,6 +1103,8 @@ cdef class Scanner: if use_threads is not None: check_status(builder.get().UseThreads(use_threads)) + check_status(builder.get().BatchSize(batch_size)) + # instantiate the scanner object scanner = GetResultValue(builder.get().Finish()) self.init(scanner) diff --git a/python/pyarrow/includes/libarrow_dataset.pxd b/python/pyarrow/includes/libarrow_dataset.pxd index f8bf4e418438e..53d10590cf0ef 100644 --- a/python/pyarrow/includes/libarrow_dataset.pxd +++ b/python/pyarrow/includes/libarrow_dataset.pxd @@ -134,13 +134,11 @@ cdef extern from "arrow/dataset/api.h" namespace "arrow::dataset" nogil: cdef cppclass CFilter "arrow::dataset::Filter": pass - cdef cppclass CWriteOptions "arrow::dataset::WriteOptions": - pass - cdef cppclass CScanOptions "arrow::dataset::ScanOptions": shared_ptr[CExpression] filter shared_ptr[CSchema] schema c_bool use_threads + int64_t batch_size @staticmethod shared_ptr[CScanOptions] Defaults() @@ -165,6 +163,7 @@ cdef extern from "arrow/dataset/api.h" namespace "arrow::dataset" nogil: CStatus Filter(const CExpression & filter) CStatus Filter(shared_ptr[CExpression] filter) CStatus UseThreads(c_bool use_threads) + CStatus BatchSize(int64_t batch_size) CResult[shared_ptr[CScanner]] Finish() shared_ptr[CSchema] schema() const @@ -218,10 +217,6 @@ cdef extern from "arrow/dataset/api.h" namespace "arrow::dataset" nogil: const shared_ptr[CSchema] & schema) CResult[shared_ptr[CDataset]] Finish() - cdef cppclass CFileScanOptions "arrow::dataset::FileScanOptions"( - CScanOptions): - c_string file_type() - cdef cppclass CFileSource "arrow::dataset::FileSource": CFileSource(c_string path, CFileSystem * filesystem, CompressionType compression) @@ -232,10 +227,6 @@ cdef extern from "arrow/dataset/api.h" namespace "arrow::dataset" nogil: shared_ptr[CBuffer] buffer() CStatus Open(shared_ptr[CRandomAccessFile] * out) - cdef cppclass CFileWriteOptions "arrow::dataset::WriteOptions"( - CWriteOptions): - c_string file_type() - cdef cppclass CFileFormat "arrow::dataset::FileFormat": c_string type_name() CStatus IsSupported(const CFileSource & source, @@ -276,14 +267,6 @@ cdef extern from "arrow/dataset/api.h" namespace "arrow::dataset" nogil: shared_ptr[CFragmentIterator] GetFragments( shared_ptr[CScanOptions] options) - cdef cppclass CParquetScanOptions "arrow::dataset::ParquetScanOptions"( - CFileScanOptions): - c_string file_type() - - cdef cppclass CParquetWriterOptions "arrow::dataset::ParquetWriterOptions"( - CFileWriteOptions): - c_string file_type() - cdef cppclass CParquetFileFormatReaderOptions \ "arrow::dataset::ParquetFileFormat::ReaderOptions": c_bool use_buffered_stream diff --git a/r/R/arrowExports.R b/r/R/arrowExports.R index d3a1bf21003a0..c152957783a06 100644 --- a/r/R/arrowExports.R +++ b/r/R/arrowExports.R @@ -456,6 +456,10 @@ dataset___ScannerBuilder__UseThreads <- function(sb, threads){ invisible(.Call(`_arrow_dataset___ScannerBuilder__UseThreads` , sb, threads)) } +dataset___ScannerBuilder__BatchSize <- function(sb, batch_size){ + invisible(.Call(`_arrow_dataset___ScannerBuilder__BatchSize` , sb, batch_size)) +} + dataset___ScannerBuilder__schema <- function(sb){ .Call(`_arrow_dataset___ScannerBuilder__schema` , sb) } diff --git a/r/R/dataset.R b/r/R/dataset.R index 00877ffd4461c..a19d40c889b91 100644 --- a/r/R/dataset.R +++ b/r/R/dataset.R @@ -417,6 +417,8 @@ IpcFileFormat <- R6Class("IpcFileFormat", inherit = FileFormat) #' - `$UseThreads(threads)`: logical: should the scan use multithreading? #' The method's default input is `TRUE`, but you must call the method to enable #' multithreading because the scanner default is `FALSE`. +#' - `$BatchSize(batch_size)`: integer: Maximum row count of scanned record +#' batches. Default is 64*2**10 rows. #' - `$schema`: Active binding, returns the [Schema] of the Dataset #' - `$Finish()`: Returns a `Scanner` #' @@ -451,6 +453,10 @@ ScannerBuilder <- R6Class("ScannerBuilder", inherit = Object, dataset___ScannerBuilder__UseThreads(self, threads) self }, + BatchSize = function(batch_size) { + dataset___ScannerBuilder__BatchSize(self, batch_size) + self + }, Finish = function() unique_ptr(Scanner, dataset___ScannerBuilder__Finish(self)) ), active = list( diff --git a/r/src/arrowExports.cpp b/r/src/arrowExports.cpp index 4f97a6dcc78c1..787eb3b764354 100644 --- a/r/src/arrowExports.cpp +++ b/r/src/arrowExports.cpp @@ -1,7979 +1,6191 @@ // Generated by using data-raw/codegen.R -> do not edit by hand -#include #include "./arrow_types.h" +#include using namespace Rcpp; // array.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr Array__Slice1(const std::shared_ptr& array, - int offset); -RcppExport SEXP _arrow_Array__Slice1(SEXP array_sexp, SEXP offset_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type array( - array_sexp); - Rcpp::traits::input_parameter::type offset(offset_sexp); - return Rcpp::wrap(Array__Slice1(array, offset)); - END_RCPP +std::shared_ptr Array__Slice1(const std::shared_ptr& array, int offset); +RcppExport SEXP _arrow_Array__Slice1(SEXP array_sexp, SEXP offset_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type array(array_sexp); + Rcpp::traits::input_parameter::type offset(offset_sexp); + return Rcpp::wrap(Array__Slice1(array, offset)); +END_RCPP } #else -RcppExport SEXP _arrow_Array__Slice1(SEXP array_sexp, SEXP offset_sexp) { - Rf_error( - "Cannot call Array__Slice1(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_Array__Slice1(SEXP array_sexp, SEXP offset_sexp){ + Rf_error("Cannot call Array__Slice1(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // array.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr Array__Slice2(const std::shared_ptr& array, - int offset, int length); -RcppExport SEXP _arrow_Array__Slice2(SEXP array_sexp, SEXP offset_sexp, - SEXP length_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type array( - array_sexp); - Rcpp::traits::input_parameter::type offset(offset_sexp); - Rcpp::traits::input_parameter::type length(length_sexp); - return Rcpp::wrap(Array__Slice2(array, offset, length)); - END_RCPP +std::shared_ptr Array__Slice2(const std::shared_ptr& array, int offset, int length); +RcppExport SEXP _arrow_Array__Slice2(SEXP array_sexp, SEXP offset_sexp, SEXP length_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type array(array_sexp); + Rcpp::traits::input_parameter::type offset(offset_sexp); + Rcpp::traits::input_parameter::type length(length_sexp); + return Rcpp::wrap(Array__Slice2(array, offset, length)); +END_RCPP } #else -RcppExport SEXP _arrow_Array__Slice2(SEXP array_sexp, SEXP offset_sexp, - SEXP length_sexp) { - Rf_error( - "Cannot call Array__Slice2(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_Array__Slice2(SEXP array_sexp, SEXP offset_sexp, SEXP length_sexp){ + Rf_error("Cannot call Array__Slice2(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // array.cpp #if defined(ARROW_R_WITH_ARROW) bool Array__IsNull(const std::shared_ptr& x, int i); -RcppExport SEXP _arrow_Array__IsNull(SEXP x_sexp, SEXP i_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type x(x_sexp); - Rcpp::traits::input_parameter::type i(i_sexp); - return Rcpp::wrap(Array__IsNull(x, i)); - END_RCPP +RcppExport SEXP _arrow_Array__IsNull(SEXP x_sexp, SEXP i_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type x(x_sexp); + Rcpp::traits::input_parameter::type i(i_sexp); + return Rcpp::wrap(Array__IsNull(x, i)); +END_RCPP } #else -RcppExport SEXP _arrow_Array__IsNull(SEXP x_sexp, SEXP i_sexp) { - Rf_error( - "Cannot call Array__IsNull(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_Array__IsNull(SEXP x_sexp, SEXP i_sexp){ + Rf_error("Cannot call Array__IsNull(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // array.cpp #if defined(ARROW_R_WITH_ARROW) bool Array__IsValid(const std::shared_ptr& x, int i); -RcppExport SEXP _arrow_Array__IsValid(SEXP x_sexp, SEXP i_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type x(x_sexp); - Rcpp::traits::input_parameter::type i(i_sexp); - return Rcpp::wrap(Array__IsValid(x, i)); - END_RCPP +RcppExport SEXP _arrow_Array__IsValid(SEXP x_sexp, SEXP i_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type x(x_sexp); + Rcpp::traits::input_parameter::type i(i_sexp); + return Rcpp::wrap(Array__IsValid(x, i)); +END_RCPP } #else -RcppExport SEXP _arrow_Array__IsValid(SEXP x_sexp, SEXP i_sexp) { - Rf_error( - "Cannot call Array__IsValid(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_Array__IsValid(SEXP x_sexp, SEXP i_sexp){ + Rf_error("Cannot call Array__IsValid(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // array.cpp #if defined(ARROW_R_WITH_ARROW) int Array__length(const std::shared_ptr& x); -RcppExport SEXP _arrow_Array__length(SEXP x_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type x(x_sexp); - return Rcpp::wrap(Array__length(x)); - END_RCPP +RcppExport SEXP _arrow_Array__length(SEXP x_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type x(x_sexp); + return Rcpp::wrap(Array__length(x)); +END_RCPP } #else -RcppExport SEXP _arrow_Array__length(SEXP x_sexp) { - Rf_error( - "Cannot call Array__length(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_Array__length(SEXP x_sexp){ + Rf_error("Cannot call Array__length(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // array.cpp #if defined(ARROW_R_WITH_ARROW) int Array__offset(const std::shared_ptr& x); -RcppExport SEXP _arrow_Array__offset(SEXP x_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type x(x_sexp); - return Rcpp::wrap(Array__offset(x)); - END_RCPP +RcppExport SEXP _arrow_Array__offset(SEXP x_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type x(x_sexp); + return Rcpp::wrap(Array__offset(x)); +END_RCPP } #else -RcppExport SEXP _arrow_Array__offset(SEXP x_sexp) { - Rf_error( - "Cannot call Array__offset(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_Array__offset(SEXP x_sexp){ + Rf_error("Cannot call Array__offset(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // array.cpp #if defined(ARROW_R_WITH_ARROW) int Array__null_count(const std::shared_ptr& x); -RcppExport SEXP _arrow_Array__null_count(SEXP x_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type x(x_sexp); - return Rcpp::wrap(Array__null_count(x)); - END_RCPP +RcppExport SEXP _arrow_Array__null_count(SEXP x_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type x(x_sexp); + return Rcpp::wrap(Array__null_count(x)); +END_RCPP } #else -RcppExport SEXP _arrow_Array__null_count(SEXP x_sexp) { - Rf_error( - "Cannot call Array__null_count(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_Array__null_count(SEXP x_sexp){ + Rf_error("Cannot call Array__null_count(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // array.cpp #if defined(ARROW_R_WITH_ARROW) std::shared_ptr Array__type(const std::shared_ptr& x); -RcppExport SEXP _arrow_Array__type(SEXP x_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type x(x_sexp); - return Rcpp::wrap(Array__type(x)); - END_RCPP +RcppExport SEXP _arrow_Array__type(SEXP x_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type x(x_sexp); + return Rcpp::wrap(Array__type(x)); +END_RCPP } #else -RcppExport SEXP _arrow_Array__type(SEXP x_sexp) { - Rf_error( - "Cannot call Array__type(). Please use arrow::install_arrow() to install required " - "runtime libraries. "); +RcppExport SEXP _arrow_Array__type(SEXP x_sexp){ + Rf_error("Cannot call Array__type(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // array.cpp #if defined(ARROW_R_WITH_ARROW) std::string Array__ToString(const std::shared_ptr& x); -RcppExport SEXP _arrow_Array__ToString(SEXP x_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type x(x_sexp); - return Rcpp::wrap(Array__ToString(x)); - END_RCPP +RcppExport SEXP _arrow_Array__ToString(SEXP x_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type x(x_sexp); + return Rcpp::wrap(Array__ToString(x)); +END_RCPP } #else -RcppExport SEXP _arrow_Array__ToString(SEXP x_sexp) { - Rf_error( - "Cannot call Array__ToString(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_Array__ToString(SEXP x_sexp){ + Rf_error("Cannot call Array__ToString(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // array.cpp #if defined(ARROW_R_WITH_ARROW) arrow::Type::type Array__type_id(const std::shared_ptr& x); -RcppExport SEXP _arrow_Array__type_id(SEXP x_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type x(x_sexp); - return Rcpp::wrap(Array__type_id(x)); - END_RCPP +RcppExport SEXP _arrow_Array__type_id(SEXP x_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type x(x_sexp); + return Rcpp::wrap(Array__type_id(x)); +END_RCPP } #else -RcppExport SEXP _arrow_Array__type_id(SEXP x_sexp) { - Rf_error( - "Cannot call Array__type_id(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_Array__type_id(SEXP x_sexp){ + Rf_error("Cannot call Array__type_id(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // array.cpp #if defined(ARROW_R_WITH_ARROW) -bool Array__Equals(const std::shared_ptr& lhs, - const std::shared_ptr& rhs); -RcppExport SEXP _arrow_Array__Equals(SEXP lhs_sexp, SEXP rhs_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type lhs(lhs_sexp); - Rcpp::traits::input_parameter&>::type rhs(rhs_sexp); - return Rcpp::wrap(Array__Equals(lhs, rhs)); - END_RCPP +bool Array__Equals(const std::shared_ptr& lhs, const std::shared_ptr& rhs); +RcppExport SEXP _arrow_Array__Equals(SEXP lhs_sexp, SEXP rhs_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type lhs(lhs_sexp); + Rcpp::traits::input_parameter&>::type rhs(rhs_sexp); + return Rcpp::wrap(Array__Equals(lhs, rhs)); +END_RCPP } #else -RcppExport SEXP _arrow_Array__Equals(SEXP lhs_sexp, SEXP rhs_sexp) { - Rf_error( - "Cannot call Array__Equals(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_Array__Equals(SEXP lhs_sexp, SEXP rhs_sexp){ + Rf_error("Cannot call Array__Equals(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // array.cpp #if defined(ARROW_R_WITH_ARROW) -bool Array__ApproxEquals(const std::shared_ptr& lhs, - const std::shared_ptr& rhs); -RcppExport SEXP _arrow_Array__ApproxEquals(SEXP lhs_sexp, SEXP rhs_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type lhs(lhs_sexp); - Rcpp::traits::input_parameter&>::type rhs(rhs_sexp); - return Rcpp::wrap(Array__ApproxEquals(lhs, rhs)); - END_RCPP +bool Array__ApproxEquals(const std::shared_ptr& lhs, const std::shared_ptr& rhs); +RcppExport SEXP _arrow_Array__ApproxEquals(SEXP lhs_sexp, SEXP rhs_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type lhs(lhs_sexp); + Rcpp::traits::input_parameter&>::type rhs(rhs_sexp); + return Rcpp::wrap(Array__ApproxEquals(lhs, rhs)); +END_RCPP } #else -RcppExport SEXP _arrow_Array__ApproxEquals(SEXP lhs_sexp, SEXP rhs_sexp) { - Rf_error( - "Cannot call Array__ApproxEquals(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_Array__ApproxEquals(SEXP lhs_sexp, SEXP rhs_sexp){ + Rf_error("Cannot call Array__ApproxEquals(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // array.cpp #if defined(ARROW_R_WITH_ARROW) std::shared_ptr Array__data(const std::shared_ptr& array); -RcppExport SEXP _arrow_Array__data(SEXP array_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type array( - array_sexp); - return Rcpp::wrap(Array__data(array)); - END_RCPP +RcppExport SEXP _arrow_Array__data(SEXP array_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type array(array_sexp); + return Rcpp::wrap(Array__data(array)); +END_RCPP } #else -RcppExport SEXP _arrow_Array__data(SEXP array_sexp) { - Rf_error( - "Cannot call Array__data(). Please use arrow::install_arrow() to install required " - "runtime libraries. "); +RcppExport SEXP _arrow_Array__data(SEXP array_sexp){ + Rf_error("Cannot call Array__data(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // array.cpp #if defined(ARROW_R_WITH_ARROW) -bool Array__RangeEquals(const std::shared_ptr& self, - const std::shared_ptr& other, int start_idx, - int end_idx, int other_start_idx); -RcppExport SEXP _arrow_Array__RangeEquals(SEXP self_sexp, SEXP other_sexp, - SEXP start_idx_sexp, SEXP end_idx_sexp, - SEXP other_start_idx_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type self( - self_sexp); - Rcpp::traits::input_parameter&>::type other( - other_sexp); - Rcpp::traits::input_parameter::type start_idx(start_idx_sexp); - Rcpp::traits::input_parameter::type end_idx(end_idx_sexp); - Rcpp::traits::input_parameter::type other_start_idx(other_start_idx_sexp); - return Rcpp::wrap(Array__RangeEquals(self, other, start_idx, end_idx, other_start_idx)); - END_RCPP -} -#else -RcppExport SEXP _arrow_Array__RangeEquals(SEXP self_sexp, SEXP other_sexp, - SEXP start_idx_sexp, SEXP end_idx_sexp, - SEXP other_start_idx_sexp) { - Rf_error( - "Cannot call Array__RangeEquals(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +bool Array__RangeEquals(const std::shared_ptr& self, const std::shared_ptr& other, int start_idx, int end_idx, int other_start_idx); +RcppExport SEXP _arrow_Array__RangeEquals(SEXP self_sexp, SEXP other_sexp, SEXP start_idx_sexp, SEXP end_idx_sexp, SEXP other_start_idx_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type self(self_sexp); + Rcpp::traits::input_parameter&>::type other(other_sexp); + Rcpp::traits::input_parameter::type start_idx(start_idx_sexp); + Rcpp::traits::input_parameter::type end_idx(end_idx_sexp); + Rcpp::traits::input_parameter::type other_start_idx(other_start_idx_sexp); + return Rcpp::wrap(Array__RangeEquals(self, other, start_idx, end_idx, other_start_idx)); +END_RCPP +} +#else +RcppExport SEXP _arrow_Array__RangeEquals(SEXP self_sexp, SEXP other_sexp, SEXP start_idx_sexp, SEXP end_idx_sexp, SEXP other_start_idx_sexp){ + Rf_error("Cannot call Array__RangeEquals(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // array.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr Array__View(const std::shared_ptr& array, - const std::shared_ptr& type); -RcppExport SEXP _arrow_Array__View(SEXP array_sexp, SEXP type_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type array( - array_sexp); - Rcpp::traits::input_parameter&>::type type( - type_sexp); - return Rcpp::wrap(Array__View(array, type)); - END_RCPP +std::shared_ptr Array__View(const std::shared_ptr& array, const std::shared_ptr& type); +RcppExport SEXP _arrow_Array__View(SEXP array_sexp, SEXP type_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type array(array_sexp); + Rcpp::traits::input_parameter&>::type type(type_sexp); + return Rcpp::wrap(Array__View(array, type)); +END_RCPP } #else -RcppExport SEXP _arrow_Array__View(SEXP array_sexp, SEXP type_sexp) { - Rf_error( - "Cannot call Array__View(). Please use arrow::install_arrow() to install required " - "runtime libraries. "); +RcppExport SEXP _arrow_Array__View(SEXP array_sexp, SEXP type_sexp){ + Rf_error("Cannot call Array__View(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // array.cpp #if defined(ARROW_R_WITH_ARROW) LogicalVector Array__Mask(const std::shared_ptr& array); -RcppExport SEXP _arrow_Array__Mask(SEXP array_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type array( - array_sexp); - return Rcpp::wrap(Array__Mask(array)); - END_RCPP +RcppExport SEXP _arrow_Array__Mask(SEXP array_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type array(array_sexp); + return Rcpp::wrap(Array__Mask(array)); +END_RCPP } #else -RcppExport SEXP _arrow_Array__Mask(SEXP array_sexp) { - Rf_error( - "Cannot call Array__Mask(). Please use arrow::install_arrow() to install required " - "runtime libraries. "); +RcppExport SEXP _arrow_Array__Mask(SEXP array_sexp){ + Rf_error("Cannot call Array__Mask(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // array.cpp #if defined(ARROW_R_WITH_ARROW) void Array__Validate(const std::shared_ptr& array); -RcppExport SEXP _arrow_Array__Validate(SEXP array_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type array( - array_sexp); - Array__Validate(array); - return R_NilValue; - END_RCPP +RcppExport SEXP _arrow_Array__Validate(SEXP array_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type array(array_sexp); + Array__Validate(array); + return R_NilValue; +END_RCPP } #else -RcppExport SEXP _arrow_Array__Validate(SEXP array_sexp) { - Rf_error( - "Cannot call Array__Validate(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_Array__Validate(SEXP array_sexp){ + Rf_error("Cannot call Array__Validate(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // array.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr DictionaryArray__indices( - const std::shared_ptr& array); -RcppExport SEXP _arrow_DictionaryArray__indices(SEXP array_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type - array(array_sexp); - return Rcpp::wrap(DictionaryArray__indices(array)); - END_RCPP +std::shared_ptr DictionaryArray__indices(const std::shared_ptr& array); +RcppExport SEXP _arrow_DictionaryArray__indices(SEXP array_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type array(array_sexp); + return Rcpp::wrap(DictionaryArray__indices(array)); +END_RCPP } #else -RcppExport SEXP _arrow_DictionaryArray__indices(SEXP array_sexp) { - Rf_error( - "Cannot call DictionaryArray__indices(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_DictionaryArray__indices(SEXP array_sexp){ + Rf_error("Cannot call DictionaryArray__indices(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // array.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr DictionaryArray__dictionary( - const std::shared_ptr& array); -RcppExport SEXP _arrow_DictionaryArray__dictionary(SEXP array_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type - array(array_sexp); - return Rcpp::wrap(DictionaryArray__dictionary(array)); - END_RCPP +std::shared_ptr DictionaryArray__dictionary(const std::shared_ptr& array); +RcppExport SEXP _arrow_DictionaryArray__dictionary(SEXP array_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type array(array_sexp); + return Rcpp::wrap(DictionaryArray__dictionary(array)); +END_RCPP } #else -RcppExport SEXP _arrow_DictionaryArray__dictionary(SEXP array_sexp) { - Rf_error( - "Cannot call DictionaryArray__dictionary(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_DictionaryArray__dictionary(SEXP array_sexp){ + Rf_error("Cannot call DictionaryArray__dictionary(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // array.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr StructArray__field( - const std::shared_ptr& array, int i); -RcppExport SEXP _arrow_StructArray__field(SEXP array_sexp, SEXP i_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type array( - array_sexp); - Rcpp::traits::input_parameter::type i(i_sexp); - return Rcpp::wrap(StructArray__field(array, i)); - END_RCPP +std::shared_ptr StructArray__field(const std::shared_ptr& array, int i); +RcppExport SEXP _arrow_StructArray__field(SEXP array_sexp, SEXP i_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type array(array_sexp); + Rcpp::traits::input_parameter::type i(i_sexp); + return Rcpp::wrap(StructArray__field(array, i)); +END_RCPP } #else -RcppExport SEXP _arrow_StructArray__field(SEXP array_sexp, SEXP i_sexp) { - Rf_error( - "Cannot call StructArray__field(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_StructArray__field(SEXP array_sexp, SEXP i_sexp){ + Rf_error("Cannot call StructArray__field(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // array.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr StructArray__GetFieldByName( - const std::shared_ptr& array, const std::string& name); -RcppExport SEXP _arrow_StructArray__GetFieldByName(SEXP array_sexp, SEXP name_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type array( - array_sexp); - Rcpp::traits::input_parameter::type name(name_sexp); - return Rcpp::wrap(StructArray__GetFieldByName(array, name)); - END_RCPP +std::shared_ptr StructArray__GetFieldByName(const std::shared_ptr& array, const std::string& name); +RcppExport SEXP _arrow_StructArray__GetFieldByName(SEXP array_sexp, SEXP name_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type array(array_sexp); + Rcpp::traits::input_parameter::type name(name_sexp); + return Rcpp::wrap(StructArray__GetFieldByName(array, name)); +END_RCPP } #else -RcppExport SEXP _arrow_StructArray__GetFieldByName(SEXP array_sexp, SEXP name_sexp) { - Rf_error( - "Cannot call StructArray__GetFieldByName(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_StructArray__GetFieldByName(SEXP array_sexp, SEXP name_sexp){ + Rf_error("Cannot call StructArray__GetFieldByName(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // array.cpp #if defined(ARROW_R_WITH_ARROW) arrow::ArrayVector StructArray__Flatten(const std::shared_ptr& array); -RcppExport SEXP _arrow_StructArray__Flatten(SEXP array_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type array( - array_sexp); - return Rcpp::wrap(StructArray__Flatten(array)); - END_RCPP +RcppExport SEXP _arrow_StructArray__Flatten(SEXP array_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type array(array_sexp); + return Rcpp::wrap(StructArray__Flatten(array)); +END_RCPP } #else -RcppExport SEXP _arrow_StructArray__Flatten(SEXP array_sexp) { - Rf_error( - "Cannot call StructArray__Flatten(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_StructArray__Flatten(SEXP array_sexp){ + Rf_error("Cannot call StructArray__Flatten(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // array.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr ListArray__value_type( - const std::shared_ptr& array); -RcppExport SEXP _arrow_ListArray__value_type(SEXP array_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type array( - array_sexp); - return Rcpp::wrap(ListArray__value_type(array)); - END_RCPP +std::shared_ptr ListArray__value_type(const std::shared_ptr& array); +RcppExport SEXP _arrow_ListArray__value_type(SEXP array_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type array(array_sexp); + return Rcpp::wrap(ListArray__value_type(array)); +END_RCPP } #else -RcppExport SEXP _arrow_ListArray__value_type(SEXP array_sexp) { - Rf_error( - "Cannot call ListArray__value_type(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_ListArray__value_type(SEXP array_sexp){ + Rf_error("Cannot call ListArray__value_type(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // array.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr ListArray__values( - const std::shared_ptr& array); -RcppExport SEXP _arrow_ListArray__values(SEXP array_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type array( - array_sexp); - return Rcpp::wrap(ListArray__values(array)); - END_RCPP +std::shared_ptr ListArray__values(const std::shared_ptr& array); +RcppExport SEXP _arrow_ListArray__values(SEXP array_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type array(array_sexp); + return Rcpp::wrap(ListArray__values(array)); +END_RCPP } #else -RcppExport SEXP _arrow_ListArray__values(SEXP array_sexp) { - Rf_error( - "Cannot call ListArray__values(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_ListArray__values(SEXP array_sexp){ + Rf_error("Cannot call ListArray__values(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // array.cpp #if defined(ARROW_R_WITH_ARROW) -int32_t ListArray__value_length(const std::shared_ptr& array, - int64_t i); -RcppExport SEXP _arrow_ListArray__value_length(SEXP array_sexp, SEXP i_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type array( - array_sexp); - Rcpp::traits::input_parameter::type i(i_sexp); - return Rcpp::wrap(ListArray__value_length(array, i)); - END_RCPP +int32_t ListArray__value_length(const std::shared_ptr& array, int64_t i); +RcppExport SEXP _arrow_ListArray__value_length(SEXP array_sexp, SEXP i_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type array(array_sexp); + Rcpp::traits::input_parameter::type i(i_sexp); + return Rcpp::wrap(ListArray__value_length(array, i)); +END_RCPP } #else -RcppExport SEXP _arrow_ListArray__value_length(SEXP array_sexp, SEXP i_sexp) { - Rf_error( - "Cannot call ListArray__value_length(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_ListArray__value_length(SEXP array_sexp, SEXP i_sexp){ + Rf_error("Cannot call ListArray__value_length(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // array.cpp #if defined(ARROW_R_WITH_ARROW) -int32_t ListArray__value_offset(const std::shared_ptr& array, - int64_t i); -RcppExport SEXP _arrow_ListArray__value_offset(SEXP array_sexp, SEXP i_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type array( - array_sexp); - Rcpp::traits::input_parameter::type i(i_sexp); - return Rcpp::wrap(ListArray__value_offset(array, i)); - END_RCPP +int32_t ListArray__value_offset(const std::shared_ptr& array, int64_t i); +RcppExport SEXP _arrow_ListArray__value_offset(SEXP array_sexp, SEXP i_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type array(array_sexp); + Rcpp::traits::input_parameter::type i(i_sexp); + return Rcpp::wrap(ListArray__value_offset(array, i)); +END_RCPP } #else -RcppExport SEXP _arrow_ListArray__value_offset(SEXP array_sexp, SEXP i_sexp) { - Rf_error( - "Cannot call ListArray__value_offset(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_ListArray__value_offset(SEXP array_sexp, SEXP i_sexp){ + Rf_error("Cannot call ListArray__value_offset(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // array.cpp #if defined(ARROW_R_WITH_ARROW) -Rcpp::IntegerVector ListArray__raw_value_offsets( - const std::shared_ptr& array); -RcppExport SEXP _arrow_ListArray__raw_value_offsets(SEXP array_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type array( - array_sexp); - return Rcpp::wrap(ListArray__raw_value_offsets(array)); - END_RCPP +Rcpp::IntegerVector ListArray__raw_value_offsets(const std::shared_ptr& array); +RcppExport SEXP _arrow_ListArray__raw_value_offsets(SEXP array_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type array(array_sexp); + return Rcpp::wrap(ListArray__raw_value_offsets(array)); +END_RCPP } #else -RcppExport SEXP _arrow_ListArray__raw_value_offsets(SEXP array_sexp) { - Rf_error( - "Cannot call ListArray__raw_value_offsets(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_ListArray__raw_value_offsets(SEXP array_sexp){ + Rf_error("Cannot call ListArray__raw_value_offsets(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // array_from_vector.cpp #if defined(ARROW_R_WITH_ARROW) std::shared_ptr Array__infer_type(SEXP x); -RcppExport SEXP _arrow_Array__infer_type(SEXP x_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter::type x(x_sexp); - return Rcpp::wrap(Array__infer_type(x)); - END_RCPP +RcppExport SEXP _arrow_Array__infer_type(SEXP x_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter::type x(x_sexp); + return Rcpp::wrap(Array__infer_type(x)); +END_RCPP } #else -RcppExport SEXP _arrow_Array__infer_type(SEXP x_sexp) { - Rf_error( - "Cannot call Array__infer_type(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_Array__infer_type(SEXP x_sexp){ + Rf_error("Cannot call Array__infer_type(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // array_from_vector.cpp #if defined(ARROW_R_WITH_ARROW) std::shared_ptr Array__from_vector(SEXP x, SEXP s_type); -RcppExport SEXP _arrow_Array__from_vector(SEXP x_sexp, SEXP s_type_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter::type x(x_sexp); - Rcpp::traits::input_parameter::type s_type(s_type_sexp); - return Rcpp::wrap(Array__from_vector(x, s_type)); - END_RCPP +RcppExport SEXP _arrow_Array__from_vector(SEXP x_sexp, SEXP s_type_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter::type x(x_sexp); + Rcpp::traits::input_parameter::type s_type(s_type_sexp); + return Rcpp::wrap(Array__from_vector(x, s_type)); +END_RCPP } #else -RcppExport SEXP _arrow_Array__from_vector(SEXP x_sexp, SEXP s_type_sexp) { - Rf_error( - "Cannot call Array__from_vector(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_Array__from_vector(SEXP x_sexp, SEXP s_type_sexp){ + Rf_error("Cannot call Array__from_vector(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // array_from_vector.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr ChunkedArray__from_list(Rcpp::List chunks, - SEXP s_type); -RcppExport SEXP _arrow_ChunkedArray__from_list(SEXP chunks_sexp, SEXP s_type_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter::type chunks(chunks_sexp); - Rcpp::traits::input_parameter::type s_type(s_type_sexp); - return Rcpp::wrap(ChunkedArray__from_list(chunks, s_type)); - END_RCPP +std::shared_ptr ChunkedArray__from_list(Rcpp::List chunks, SEXP s_type); +RcppExport SEXP _arrow_ChunkedArray__from_list(SEXP chunks_sexp, SEXP s_type_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter::type chunks(chunks_sexp); + Rcpp::traits::input_parameter::type s_type(s_type_sexp); + return Rcpp::wrap(ChunkedArray__from_list(chunks, s_type)); +END_RCPP } #else -RcppExport SEXP _arrow_ChunkedArray__from_list(SEXP chunks_sexp, SEXP s_type_sexp) { - Rf_error( - "Cannot call ChunkedArray__from_list(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_ChunkedArray__from_list(SEXP chunks_sexp, SEXP s_type_sexp){ + Rf_error("Cannot call ChunkedArray__from_list(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // array_from_vector.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr DictionaryArray__FromArrays( - const std::shared_ptr& type, - const std::shared_ptr& indices, - const std::shared_ptr& dict); -RcppExport SEXP _arrow_DictionaryArray__FromArrays(SEXP type_sexp, SEXP indices_sexp, - SEXP dict_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type type( - type_sexp); - Rcpp::traits::input_parameter&>::type indices( - indices_sexp); - Rcpp::traits::input_parameter&>::type dict( - dict_sexp); - return Rcpp::wrap(DictionaryArray__FromArrays(type, indices, dict)); - END_RCPP +std::shared_ptr DictionaryArray__FromArrays(const std::shared_ptr& type, const std::shared_ptr& indices, const std::shared_ptr& dict); +RcppExport SEXP _arrow_DictionaryArray__FromArrays(SEXP type_sexp, SEXP indices_sexp, SEXP dict_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type type(type_sexp); + Rcpp::traits::input_parameter&>::type indices(indices_sexp); + Rcpp::traits::input_parameter&>::type dict(dict_sexp); + return Rcpp::wrap(DictionaryArray__FromArrays(type, indices, dict)); +END_RCPP } #else -RcppExport SEXP _arrow_DictionaryArray__FromArrays(SEXP type_sexp, SEXP indices_sexp, - SEXP dict_sexp) { - Rf_error( - "Cannot call DictionaryArray__FromArrays(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_DictionaryArray__FromArrays(SEXP type_sexp, SEXP indices_sexp, SEXP dict_sexp){ + Rf_error("Cannot call DictionaryArray__FromArrays(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // array_to_vector.cpp #if defined(ARROW_R_WITH_ARROW) SEXP Array__as_vector(const std::shared_ptr& array); -RcppExport SEXP _arrow_Array__as_vector(SEXP array_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type array( - array_sexp); - return Rcpp::wrap(Array__as_vector(array)); - END_RCPP +RcppExport SEXP _arrow_Array__as_vector(SEXP array_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type array(array_sexp); + return Rcpp::wrap(Array__as_vector(array)); +END_RCPP } #else -RcppExport SEXP _arrow_Array__as_vector(SEXP array_sexp) { - Rf_error( - "Cannot call Array__as_vector(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_Array__as_vector(SEXP array_sexp){ + Rf_error("Cannot call Array__as_vector(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // array_to_vector.cpp #if defined(ARROW_R_WITH_ARROW) SEXP ChunkedArray__as_vector(const std::shared_ptr& chunked_array); -RcppExport SEXP _arrow_ChunkedArray__as_vector(SEXP chunked_array_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type - chunked_array(chunked_array_sexp); - return Rcpp::wrap(ChunkedArray__as_vector(chunked_array)); - END_RCPP +RcppExport SEXP _arrow_ChunkedArray__as_vector(SEXP chunked_array_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type chunked_array(chunked_array_sexp); + return Rcpp::wrap(ChunkedArray__as_vector(chunked_array)); +END_RCPP } #else -RcppExport SEXP _arrow_ChunkedArray__as_vector(SEXP chunked_array_sexp) { - Rf_error( - "Cannot call ChunkedArray__as_vector(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_ChunkedArray__as_vector(SEXP chunked_array_sexp){ + Rf_error("Cannot call ChunkedArray__as_vector(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // array_to_vector.cpp #if defined(ARROW_R_WITH_ARROW) -Rcpp::List RecordBatch__to_dataframe(const std::shared_ptr& batch, - bool use_threads); -RcppExport SEXP _arrow_RecordBatch__to_dataframe(SEXP batch_sexp, SEXP use_threads_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type batch( - batch_sexp); - Rcpp::traits::input_parameter::type use_threads(use_threads_sexp); - return Rcpp::wrap(RecordBatch__to_dataframe(batch, use_threads)); - END_RCPP +Rcpp::List RecordBatch__to_dataframe(const std::shared_ptr& batch, bool use_threads); +RcppExport SEXP _arrow_RecordBatch__to_dataframe(SEXP batch_sexp, SEXP use_threads_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type batch(batch_sexp); + Rcpp::traits::input_parameter::type use_threads(use_threads_sexp); + return Rcpp::wrap(RecordBatch__to_dataframe(batch, use_threads)); +END_RCPP } #else -RcppExport SEXP _arrow_RecordBatch__to_dataframe(SEXP batch_sexp, SEXP use_threads_sexp) { - Rf_error( - "Cannot call RecordBatch__to_dataframe(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_RecordBatch__to_dataframe(SEXP batch_sexp, SEXP use_threads_sexp){ + Rf_error("Cannot call RecordBatch__to_dataframe(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // array_to_vector.cpp #if defined(ARROW_R_WITH_ARROW) -Rcpp::List Table__to_dataframe(const std::shared_ptr& table, - bool use_threads); -RcppExport SEXP _arrow_Table__to_dataframe(SEXP table_sexp, SEXP use_threads_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type table( - table_sexp); - Rcpp::traits::input_parameter::type use_threads(use_threads_sexp); - return Rcpp::wrap(Table__to_dataframe(table, use_threads)); - END_RCPP +Rcpp::List Table__to_dataframe(const std::shared_ptr& table, bool use_threads); +RcppExport SEXP _arrow_Table__to_dataframe(SEXP table_sexp, SEXP use_threads_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type table(table_sexp); + Rcpp::traits::input_parameter::type use_threads(use_threads_sexp); + return Rcpp::wrap(Table__to_dataframe(table, use_threads)); +END_RCPP } #else -RcppExport SEXP _arrow_Table__to_dataframe(SEXP table_sexp, SEXP use_threads_sexp) { - Rf_error( - "Cannot call Table__to_dataframe(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_Table__to_dataframe(SEXP table_sexp, SEXP use_threads_sexp){ + Rf_error("Cannot call Table__to_dataframe(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // arraydata.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr ArrayData__get_type( - const std::shared_ptr& x); -RcppExport SEXP _arrow_ArrayData__get_type(SEXP x_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type x(x_sexp); - return Rcpp::wrap(ArrayData__get_type(x)); - END_RCPP +std::shared_ptr ArrayData__get_type(const std::shared_ptr& x); +RcppExport SEXP _arrow_ArrayData__get_type(SEXP x_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type x(x_sexp); + return Rcpp::wrap(ArrayData__get_type(x)); +END_RCPP } #else -RcppExport SEXP _arrow_ArrayData__get_type(SEXP x_sexp) { - Rf_error( - "Cannot call ArrayData__get_type(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_ArrayData__get_type(SEXP x_sexp){ + Rf_error("Cannot call ArrayData__get_type(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // arraydata.cpp #if defined(ARROW_R_WITH_ARROW) int ArrayData__get_length(const std::shared_ptr& x); -RcppExport SEXP _arrow_ArrayData__get_length(SEXP x_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type x(x_sexp); - return Rcpp::wrap(ArrayData__get_length(x)); - END_RCPP +RcppExport SEXP _arrow_ArrayData__get_length(SEXP x_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type x(x_sexp); + return Rcpp::wrap(ArrayData__get_length(x)); +END_RCPP } #else -RcppExport SEXP _arrow_ArrayData__get_length(SEXP x_sexp) { - Rf_error( - "Cannot call ArrayData__get_length(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_ArrayData__get_length(SEXP x_sexp){ + Rf_error("Cannot call ArrayData__get_length(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // arraydata.cpp #if defined(ARROW_R_WITH_ARROW) int ArrayData__get_null_count(const std::shared_ptr& x); -RcppExport SEXP _arrow_ArrayData__get_null_count(SEXP x_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type x(x_sexp); - return Rcpp::wrap(ArrayData__get_null_count(x)); - END_RCPP +RcppExport SEXP _arrow_ArrayData__get_null_count(SEXP x_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type x(x_sexp); + return Rcpp::wrap(ArrayData__get_null_count(x)); +END_RCPP } #else -RcppExport SEXP _arrow_ArrayData__get_null_count(SEXP x_sexp) { - Rf_error( - "Cannot call ArrayData__get_null_count(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_ArrayData__get_null_count(SEXP x_sexp){ + Rf_error("Cannot call ArrayData__get_null_count(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // arraydata.cpp #if defined(ARROW_R_WITH_ARROW) int ArrayData__get_offset(const std::shared_ptr& x); -RcppExport SEXP _arrow_ArrayData__get_offset(SEXP x_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type x(x_sexp); - return Rcpp::wrap(ArrayData__get_offset(x)); - END_RCPP +RcppExport SEXP _arrow_ArrayData__get_offset(SEXP x_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type x(x_sexp); + return Rcpp::wrap(ArrayData__get_offset(x)); +END_RCPP } #else -RcppExport SEXP _arrow_ArrayData__get_offset(SEXP x_sexp) { - Rf_error( - "Cannot call ArrayData__get_offset(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_ArrayData__get_offset(SEXP x_sexp){ + Rf_error("Cannot call ArrayData__get_offset(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // arraydata.cpp #if defined(ARROW_R_WITH_ARROW) List ArrayData__buffers(const std::shared_ptr& x); -RcppExport SEXP _arrow_ArrayData__buffers(SEXP x_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type x(x_sexp); - return Rcpp::wrap(ArrayData__buffers(x)); - END_RCPP +RcppExport SEXP _arrow_ArrayData__buffers(SEXP x_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type x(x_sexp); + return Rcpp::wrap(ArrayData__buffers(x)); +END_RCPP } #else -RcppExport SEXP _arrow_ArrayData__buffers(SEXP x_sexp) { - Rf_error( - "Cannot call ArrayData__buffers(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_ArrayData__buffers(SEXP x_sexp){ + Rf_error("Cannot call ArrayData__buffers(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // buffer.cpp #if defined(ARROW_R_WITH_ARROW) bool Buffer__is_mutable(const std::shared_ptr& buffer); -RcppExport SEXP _arrow_Buffer__is_mutable(SEXP buffer_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type buffer( - buffer_sexp); - return Rcpp::wrap(Buffer__is_mutable(buffer)); - END_RCPP +RcppExport SEXP _arrow_Buffer__is_mutable(SEXP buffer_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type buffer(buffer_sexp); + return Rcpp::wrap(Buffer__is_mutable(buffer)); +END_RCPP } #else -RcppExport SEXP _arrow_Buffer__is_mutable(SEXP buffer_sexp) { - Rf_error( - "Cannot call Buffer__is_mutable(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_Buffer__is_mutable(SEXP buffer_sexp){ + Rf_error("Cannot call Buffer__is_mutable(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // buffer.cpp #if defined(ARROW_R_WITH_ARROW) void Buffer__ZeroPadding(const std::shared_ptr& buffer); -RcppExport SEXP _arrow_Buffer__ZeroPadding(SEXP buffer_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type buffer( - buffer_sexp); - Buffer__ZeroPadding(buffer); - return R_NilValue; - END_RCPP +RcppExport SEXP _arrow_Buffer__ZeroPadding(SEXP buffer_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type buffer(buffer_sexp); + Buffer__ZeroPadding(buffer); + return R_NilValue; +END_RCPP } #else -RcppExport SEXP _arrow_Buffer__ZeroPadding(SEXP buffer_sexp) { - Rf_error( - "Cannot call Buffer__ZeroPadding(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_Buffer__ZeroPadding(SEXP buffer_sexp){ + Rf_error("Cannot call Buffer__ZeroPadding(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // buffer.cpp #if defined(ARROW_R_WITH_ARROW) int64_t Buffer__capacity(const std::shared_ptr& buffer); -RcppExport SEXP _arrow_Buffer__capacity(SEXP buffer_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type buffer( - buffer_sexp); - return Rcpp::wrap(Buffer__capacity(buffer)); - END_RCPP +RcppExport SEXP _arrow_Buffer__capacity(SEXP buffer_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type buffer(buffer_sexp); + return Rcpp::wrap(Buffer__capacity(buffer)); +END_RCPP } #else -RcppExport SEXP _arrow_Buffer__capacity(SEXP buffer_sexp) { - Rf_error( - "Cannot call Buffer__capacity(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_Buffer__capacity(SEXP buffer_sexp){ + Rf_error("Cannot call Buffer__capacity(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // buffer.cpp #if defined(ARROW_R_WITH_ARROW) int64_t Buffer__size(const std::shared_ptr& buffer); -RcppExport SEXP _arrow_Buffer__size(SEXP buffer_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type buffer( - buffer_sexp); - return Rcpp::wrap(Buffer__size(buffer)); - END_RCPP +RcppExport SEXP _arrow_Buffer__size(SEXP buffer_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type buffer(buffer_sexp); + return Rcpp::wrap(Buffer__size(buffer)); +END_RCPP } #else -RcppExport SEXP _arrow_Buffer__size(SEXP buffer_sexp) { - Rf_error( - "Cannot call Buffer__size(). Please use arrow::install_arrow() to install required " - "runtime libraries. "); +RcppExport SEXP _arrow_Buffer__size(SEXP buffer_sexp){ + Rf_error("Cannot call Buffer__size(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // buffer.cpp #if defined(ARROW_R_WITH_ARROW) std::shared_ptr r___RBuffer__initialize(SEXP x); -RcppExport SEXP _arrow_r___RBuffer__initialize(SEXP x_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter::type x(x_sexp); - return Rcpp::wrap(r___RBuffer__initialize(x)); - END_RCPP +RcppExport SEXP _arrow_r___RBuffer__initialize(SEXP x_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter::type x(x_sexp); + return Rcpp::wrap(r___RBuffer__initialize(x)); +END_RCPP } #else -RcppExport SEXP _arrow_r___RBuffer__initialize(SEXP x_sexp) { - Rf_error( - "Cannot call r___RBuffer__initialize(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_r___RBuffer__initialize(SEXP x_sexp){ + Rf_error("Cannot call r___RBuffer__initialize(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // buffer.cpp #if defined(ARROW_R_WITH_ARROW) Rcpp::RawVector Buffer__data(const std::shared_ptr& buffer); -RcppExport SEXP _arrow_Buffer__data(SEXP buffer_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type buffer( - buffer_sexp); - return Rcpp::wrap(Buffer__data(buffer)); - END_RCPP +RcppExport SEXP _arrow_Buffer__data(SEXP buffer_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type buffer(buffer_sexp); + return Rcpp::wrap(Buffer__data(buffer)); +END_RCPP } #else -RcppExport SEXP _arrow_Buffer__data(SEXP buffer_sexp) { - Rf_error( - "Cannot call Buffer__data(). Please use arrow::install_arrow() to install required " - "runtime libraries. "); +RcppExport SEXP _arrow_Buffer__data(SEXP buffer_sexp){ + Rf_error("Cannot call Buffer__data(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // buffer.cpp #if defined(ARROW_R_WITH_ARROW) -bool Buffer__Equals(const std::shared_ptr& x, - const std::shared_ptr& y); -RcppExport SEXP _arrow_Buffer__Equals(SEXP x_sexp, SEXP y_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type x(x_sexp); - Rcpp::traits::input_parameter&>::type y(y_sexp); - return Rcpp::wrap(Buffer__Equals(x, y)); - END_RCPP +bool Buffer__Equals(const std::shared_ptr& x, const std::shared_ptr& y); +RcppExport SEXP _arrow_Buffer__Equals(SEXP x_sexp, SEXP y_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type x(x_sexp); + Rcpp::traits::input_parameter&>::type y(y_sexp); + return Rcpp::wrap(Buffer__Equals(x, y)); +END_RCPP } #else -RcppExport SEXP _arrow_Buffer__Equals(SEXP x_sexp, SEXP y_sexp) { - Rf_error( - "Cannot call Buffer__Equals(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_Buffer__Equals(SEXP x_sexp, SEXP y_sexp){ + Rf_error("Cannot call Buffer__Equals(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // chunkedarray.cpp #if defined(ARROW_R_WITH_ARROW) int ChunkedArray__length(const std::shared_ptr& chunked_array); -RcppExport SEXP _arrow_ChunkedArray__length(SEXP chunked_array_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type - chunked_array(chunked_array_sexp); - return Rcpp::wrap(ChunkedArray__length(chunked_array)); - END_RCPP +RcppExport SEXP _arrow_ChunkedArray__length(SEXP chunked_array_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type chunked_array(chunked_array_sexp); + return Rcpp::wrap(ChunkedArray__length(chunked_array)); +END_RCPP } #else -RcppExport SEXP _arrow_ChunkedArray__length(SEXP chunked_array_sexp) { - Rf_error( - "Cannot call ChunkedArray__length(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_ChunkedArray__length(SEXP chunked_array_sexp){ + Rf_error("Cannot call ChunkedArray__length(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // chunkedarray.cpp #if defined(ARROW_R_WITH_ARROW) int ChunkedArray__null_count(const std::shared_ptr& chunked_array); -RcppExport SEXP _arrow_ChunkedArray__null_count(SEXP chunked_array_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type - chunked_array(chunked_array_sexp); - return Rcpp::wrap(ChunkedArray__null_count(chunked_array)); - END_RCPP +RcppExport SEXP _arrow_ChunkedArray__null_count(SEXP chunked_array_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type chunked_array(chunked_array_sexp); + return Rcpp::wrap(ChunkedArray__null_count(chunked_array)); +END_RCPP } #else -RcppExport SEXP _arrow_ChunkedArray__null_count(SEXP chunked_array_sexp) { - Rf_error( - "Cannot call ChunkedArray__null_count(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_ChunkedArray__null_count(SEXP chunked_array_sexp){ + Rf_error("Cannot call ChunkedArray__null_count(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // chunkedarray.cpp #if defined(ARROW_R_WITH_ARROW) int ChunkedArray__num_chunks(const std::shared_ptr& chunked_array); -RcppExport SEXP _arrow_ChunkedArray__num_chunks(SEXP chunked_array_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type - chunked_array(chunked_array_sexp); - return Rcpp::wrap(ChunkedArray__num_chunks(chunked_array)); - END_RCPP +RcppExport SEXP _arrow_ChunkedArray__num_chunks(SEXP chunked_array_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type chunked_array(chunked_array_sexp); + return Rcpp::wrap(ChunkedArray__num_chunks(chunked_array)); +END_RCPP } #else -RcppExport SEXP _arrow_ChunkedArray__num_chunks(SEXP chunked_array_sexp) { - Rf_error( - "Cannot call ChunkedArray__num_chunks(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_ChunkedArray__num_chunks(SEXP chunked_array_sexp){ + Rf_error("Cannot call ChunkedArray__num_chunks(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // chunkedarray.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr ChunkedArray__chunk( - const std::shared_ptr& chunked_array, int i); -RcppExport SEXP _arrow_ChunkedArray__chunk(SEXP chunked_array_sexp, SEXP i_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type - chunked_array(chunked_array_sexp); - Rcpp::traits::input_parameter::type i(i_sexp); - return Rcpp::wrap(ChunkedArray__chunk(chunked_array, i)); - END_RCPP +std::shared_ptr ChunkedArray__chunk(const std::shared_ptr& chunked_array, int i); +RcppExport SEXP _arrow_ChunkedArray__chunk(SEXP chunked_array_sexp, SEXP i_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type chunked_array(chunked_array_sexp); + Rcpp::traits::input_parameter::type i(i_sexp); + return Rcpp::wrap(ChunkedArray__chunk(chunked_array, i)); +END_RCPP } #else -RcppExport SEXP _arrow_ChunkedArray__chunk(SEXP chunked_array_sexp, SEXP i_sexp) { - Rf_error( - "Cannot call ChunkedArray__chunk(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_ChunkedArray__chunk(SEXP chunked_array_sexp, SEXP i_sexp){ + Rf_error("Cannot call ChunkedArray__chunk(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // chunkedarray.cpp #if defined(ARROW_R_WITH_ARROW) List ChunkedArray__chunks(const std::shared_ptr& chunked_array); -RcppExport SEXP _arrow_ChunkedArray__chunks(SEXP chunked_array_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type - chunked_array(chunked_array_sexp); - return Rcpp::wrap(ChunkedArray__chunks(chunked_array)); - END_RCPP +RcppExport SEXP _arrow_ChunkedArray__chunks(SEXP chunked_array_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type chunked_array(chunked_array_sexp); + return Rcpp::wrap(ChunkedArray__chunks(chunked_array)); +END_RCPP } #else -RcppExport SEXP _arrow_ChunkedArray__chunks(SEXP chunked_array_sexp) { - Rf_error( - "Cannot call ChunkedArray__chunks(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_ChunkedArray__chunks(SEXP chunked_array_sexp){ + Rf_error("Cannot call ChunkedArray__chunks(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // chunkedarray.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr ChunkedArray__type( - const std::shared_ptr& chunked_array); -RcppExport SEXP _arrow_ChunkedArray__type(SEXP chunked_array_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type - chunked_array(chunked_array_sexp); - return Rcpp::wrap(ChunkedArray__type(chunked_array)); - END_RCPP +std::shared_ptr ChunkedArray__type(const std::shared_ptr& chunked_array); +RcppExport SEXP _arrow_ChunkedArray__type(SEXP chunked_array_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type chunked_array(chunked_array_sexp); + return Rcpp::wrap(ChunkedArray__type(chunked_array)); +END_RCPP } #else -RcppExport SEXP _arrow_ChunkedArray__type(SEXP chunked_array_sexp) { - Rf_error( - "Cannot call ChunkedArray__type(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_ChunkedArray__type(SEXP chunked_array_sexp){ + Rf_error("Cannot call ChunkedArray__type(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // chunkedarray.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr ChunkedArray__Slice1( - const std::shared_ptr& chunked_array, int offset); -RcppExport SEXP _arrow_ChunkedArray__Slice1(SEXP chunked_array_sexp, SEXP offset_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type - chunked_array(chunked_array_sexp); - Rcpp::traits::input_parameter::type offset(offset_sexp); - return Rcpp::wrap(ChunkedArray__Slice1(chunked_array, offset)); - END_RCPP +std::shared_ptr ChunkedArray__Slice1(const std::shared_ptr& chunked_array, int offset); +RcppExport SEXP _arrow_ChunkedArray__Slice1(SEXP chunked_array_sexp, SEXP offset_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type chunked_array(chunked_array_sexp); + Rcpp::traits::input_parameter::type offset(offset_sexp); + return Rcpp::wrap(ChunkedArray__Slice1(chunked_array, offset)); +END_RCPP } #else -RcppExport SEXP _arrow_ChunkedArray__Slice1(SEXP chunked_array_sexp, SEXP offset_sexp) { - Rf_error( - "Cannot call ChunkedArray__Slice1(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_ChunkedArray__Slice1(SEXP chunked_array_sexp, SEXP offset_sexp){ + Rf_error("Cannot call ChunkedArray__Slice1(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // chunkedarray.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr ChunkedArray__Slice2( - const std::shared_ptr& chunked_array, int offset, int length); -RcppExport SEXP _arrow_ChunkedArray__Slice2(SEXP chunked_array_sexp, SEXP offset_sexp, - SEXP length_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type - chunked_array(chunked_array_sexp); - Rcpp::traits::input_parameter::type offset(offset_sexp); - Rcpp::traits::input_parameter::type length(length_sexp); - return Rcpp::wrap(ChunkedArray__Slice2(chunked_array, offset, length)); - END_RCPP +std::shared_ptr ChunkedArray__Slice2(const std::shared_ptr& chunked_array, int offset, int length); +RcppExport SEXP _arrow_ChunkedArray__Slice2(SEXP chunked_array_sexp, SEXP offset_sexp, SEXP length_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type chunked_array(chunked_array_sexp); + Rcpp::traits::input_parameter::type offset(offset_sexp); + Rcpp::traits::input_parameter::type length(length_sexp); + return Rcpp::wrap(ChunkedArray__Slice2(chunked_array, offset, length)); +END_RCPP } #else -RcppExport SEXP _arrow_ChunkedArray__Slice2(SEXP chunked_array_sexp, SEXP offset_sexp, - SEXP length_sexp) { - Rf_error( - "Cannot call ChunkedArray__Slice2(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_ChunkedArray__Slice2(SEXP chunked_array_sexp, SEXP offset_sexp, SEXP length_sexp){ + Rf_error("Cannot call ChunkedArray__Slice2(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // chunkedarray.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr ChunkedArray__View( - const std::shared_ptr& array, - const std::shared_ptr& type); -RcppExport SEXP _arrow_ChunkedArray__View(SEXP array_sexp, SEXP type_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type array( - array_sexp); - Rcpp::traits::input_parameter&>::type type( - type_sexp); - return Rcpp::wrap(ChunkedArray__View(array, type)); - END_RCPP +std::shared_ptr ChunkedArray__View(const std::shared_ptr& array, const std::shared_ptr& type); +RcppExport SEXP _arrow_ChunkedArray__View(SEXP array_sexp, SEXP type_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type array(array_sexp); + Rcpp::traits::input_parameter&>::type type(type_sexp); + return Rcpp::wrap(ChunkedArray__View(array, type)); +END_RCPP } #else -RcppExport SEXP _arrow_ChunkedArray__View(SEXP array_sexp, SEXP type_sexp) { - Rf_error( - "Cannot call ChunkedArray__View(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_ChunkedArray__View(SEXP array_sexp, SEXP type_sexp){ + Rf_error("Cannot call ChunkedArray__View(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // chunkedarray.cpp #if defined(ARROW_R_WITH_ARROW) void ChunkedArray__Validate(const std::shared_ptr& chunked_array); -RcppExport SEXP _arrow_ChunkedArray__Validate(SEXP chunked_array_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type - chunked_array(chunked_array_sexp); - ChunkedArray__Validate(chunked_array); - return R_NilValue; - END_RCPP +RcppExport SEXP _arrow_ChunkedArray__Validate(SEXP chunked_array_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type chunked_array(chunked_array_sexp); + ChunkedArray__Validate(chunked_array); + return R_NilValue; +END_RCPP } #else -RcppExport SEXP _arrow_ChunkedArray__Validate(SEXP chunked_array_sexp) { - Rf_error( - "Cannot call ChunkedArray__Validate(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_ChunkedArray__Validate(SEXP chunked_array_sexp){ + Rf_error("Cannot call ChunkedArray__Validate(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // chunkedarray.cpp #if defined(ARROW_R_WITH_ARROW) -bool ChunkedArray__Equals(const std::shared_ptr& x, - const std::shared_ptr& y); -RcppExport SEXP _arrow_ChunkedArray__Equals(SEXP x_sexp, SEXP y_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type x( - x_sexp); - Rcpp::traits::input_parameter&>::type y( - y_sexp); - return Rcpp::wrap(ChunkedArray__Equals(x, y)); - END_RCPP +bool ChunkedArray__Equals(const std::shared_ptr& x, const std::shared_ptr& y); +RcppExport SEXP _arrow_ChunkedArray__Equals(SEXP x_sexp, SEXP y_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type x(x_sexp); + Rcpp::traits::input_parameter&>::type y(y_sexp); + return Rcpp::wrap(ChunkedArray__Equals(x, y)); +END_RCPP } #else -RcppExport SEXP _arrow_ChunkedArray__Equals(SEXP x_sexp, SEXP y_sexp) { - Rf_error( - "Cannot call ChunkedArray__Equals(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_ChunkedArray__Equals(SEXP x_sexp, SEXP y_sexp){ + Rf_error("Cannot call ChunkedArray__Equals(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // compression.cpp #if defined(ARROW_R_WITH_ARROW) -std::unique_ptr util___Codec__Create(arrow::Compression::type codec, - int compression_level); -RcppExport SEXP _arrow_util___Codec__Create(SEXP codec_sexp, - SEXP compression_level_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter::type codec(codec_sexp); - Rcpp::traits::input_parameter::type compression_level(compression_level_sexp); - return Rcpp::wrap(util___Codec__Create(codec, compression_level)); - END_RCPP +std::unique_ptr util___Codec__Create(arrow::Compression::type codec, int compression_level); +RcppExport SEXP _arrow_util___Codec__Create(SEXP codec_sexp, SEXP compression_level_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter::type codec(codec_sexp); + Rcpp::traits::input_parameter::type compression_level(compression_level_sexp); + return Rcpp::wrap(util___Codec__Create(codec, compression_level)); +END_RCPP } #else -RcppExport SEXP _arrow_util___Codec__Create(SEXP codec_sexp, - SEXP compression_level_sexp) { - Rf_error( - "Cannot call util___Codec__Create(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_util___Codec__Create(SEXP codec_sexp, SEXP compression_level_sexp){ + Rf_error("Cannot call util___Codec__Create(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // compression.cpp #if defined(ARROW_R_WITH_ARROW) std::string util___Codec__name(const std::unique_ptr& codec); -RcppExport SEXP _arrow_util___Codec__name(SEXP codec_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type codec( - codec_sexp); - return Rcpp::wrap(util___Codec__name(codec)); - END_RCPP +RcppExport SEXP _arrow_util___Codec__name(SEXP codec_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type codec(codec_sexp); + return Rcpp::wrap(util___Codec__name(codec)); +END_RCPP } #else -RcppExport SEXP _arrow_util___Codec__name(SEXP codec_sexp) { - Rf_error( - "Cannot call util___Codec__name(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_util___Codec__name(SEXP codec_sexp){ + Rf_error("Cannot call util___Codec__name(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // compression.cpp #if defined(ARROW_R_WITH_ARROW) bool util___Codec__IsAvailable(arrow::Compression::type codec); -RcppExport SEXP _arrow_util___Codec__IsAvailable(SEXP codec_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter::type codec(codec_sexp); - return Rcpp::wrap(util___Codec__IsAvailable(codec)); - END_RCPP +RcppExport SEXP _arrow_util___Codec__IsAvailable(SEXP codec_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter::type codec(codec_sexp); + return Rcpp::wrap(util___Codec__IsAvailable(codec)); +END_RCPP } #else -RcppExport SEXP _arrow_util___Codec__IsAvailable(SEXP codec_sexp) { - Rf_error( - "Cannot call util___Codec__IsAvailable(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_util___Codec__IsAvailable(SEXP codec_sexp){ + Rf_error("Cannot call util___Codec__IsAvailable(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // compression.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr io___CompressedOutputStream__Make( - const std::unique_ptr& codec, - const std::shared_ptr& raw); -RcppExport SEXP _arrow_io___CompressedOutputStream__Make(SEXP codec_sexp, SEXP raw_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type codec( - codec_sexp); - Rcpp::traits::input_parameter&>::type - raw(raw_sexp); - return Rcpp::wrap(io___CompressedOutputStream__Make(codec, raw)); - END_RCPP +std::shared_ptr io___CompressedOutputStream__Make(const std::unique_ptr& codec, const std::shared_ptr& raw); +RcppExport SEXP _arrow_io___CompressedOutputStream__Make(SEXP codec_sexp, SEXP raw_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type codec(codec_sexp); + Rcpp::traits::input_parameter&>::type raw(raw_sexp); + return Rcpp::wrap(io___CompressedOutputStream__Make(codec, raw)); +END_RCPP } #else -RcppExport SEXP _arrow_io___CompressedOutputStream__Make(SEXP codec_sexp, SEXP raw_sexp) { - Rf_error( - "Cannot call io___CompressedOutputStream__Make(). Please use " - "arrow::install_arrow() to install required runtime libraries. "); +RcppExport SEXP _arrow_io___CompressedOutputStream__Make(SEXP codec_sexp, SEXP raw_sexp){ + Rf_error("Cannot call io___CompressedOutputStream__Make(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // compression.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr io___CompressedInputStream__Make( - const std::unique_ptr& codec, - const std::shared_ptr& raw); -RcppExport SEXP _arrow_io___CompressedInputStream__Make(SEXP codec_sexp, SEXP raw_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type codec( - codec_sexp); - Rcpp::traits::input_parameter&>::type raw( - raw_sexp); - return Rcpp::wrap(io___CompressedInputStream__Make(codec, raw)); - END_RCPP +std::shared_ptr io___CompressedInputStream__Make(const std::unique_ptr& codec, const std::shared_ptr& raw); +RcppExport SEXP _arrow_io___CompressedInputStream__Make(SEXP codec_sexp, SEXP raw_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type codec(codec_sexp); + Rcpp::traits::input_parameter&>::type raw(raw_sexp); + return Rcpp::wrap(io___CompressedInputStream__Make(codec, raw)); +END_RCPP } #else -RcppExport SEXP _arrow_io___CompressedInputStream__Make(SEXP codec_sexp, SEXP raw_sexp) { - Rf_error( - "Cannot call io___CompressedInputStream__Make(). Please use arrow::install_arrow() " - "to install required runtime libraries. "); +RcppExport SEXP _arrow_io___CompressedInputStream__Make(SEXP codec_sexp, SEXP raw_sexp){ + Rf_error("Cannot call io___CompressedInputStream__Make(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // compute.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr compute___CastOptions__initialize( - bool allow_int_overflow, bool allow_time_truncate, bool allow_float_truncate); -RcppExport SEXP _arrow_compute___CastOptions__initialize(SEXP allow_int_overflow_sexp, - SEXP allow_time_truncate_sexp, - SEXP allow_float_truncate_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter::type allow_int_overflow(allow_int_overflow_sexp); - Rcpp::traits::input_parameter::type allow_time_truncate(allow_time_truncate_sexp); - Rcpp::traits::input_parameter::type allow_float_truncate( - allow_float_truncate_sexp); - return Rcpp::wrap(compute___CastOptions__initialize( - allow_int_overflow, allow_time_truncate, allow_float_truncate)); - END_RCPP +std::shared_ptr compute___CastOptions__initialize(bool allow_int_overflow, bool allow_time_truncate, bool allow_float_truncate); +RcppExport SEXP _arrow_compute___CastOptions__initialize(SEXP allow_int_overflow_sexp, SEXP allow_time_truncate_sexp, SEXP allow_float_truncate_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter::type allow_int_overflow(allow_int_overflow_sexp); + Rcpp::traits::input_parameter::type allow_time_truncate(allow_time_truncate_sexp); + Rcpp::traits::input_parameter::type allow_float_truncate(allow_float_truncate_sexp); + return Rcpp::wrap(compute___CastOptions__initialize(allow_int_overflow, allow_time_truncate, allow_float_truncate)); +END_RCPP } #else -RcppExport SEXP _arrow_compute___CastOptions__initialize(SEXP allow_int_overflow_sexp, - SEXP allow_time_truncate_sexp, - SEXP allow_float_truncate_sexp) { - Rf_error( - "Cannot call compute___CastOptions__initialize(). Please use " - "arrow::install_arrow() to install required runtime libraries. "); +RcppExport SEXP _arrow_compute___CastOptions__initialize(SEXP allow_int_overflow_sexp, SEXP allow_time_truncate_sexp, SEXP allow_float_truncate_sexp){ + Rf_error("Cannot call compute___CastOptions__initialize(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // compute.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr Array__cast( - const std::shared_ptr& array, - const std::shared_ptr& target_type, - const std::shared_ptr& options); -RcppExport SEXP _arrow_Array__cast(SEXP array_sexp, SEXP target_type_sexp, - SEXP options_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type array( - array_sexp); - Rcpp::traits::input_parameter&>::type - target_type(target_type_sexp); - Rcpp::traits::input_parameter&>::type - options(options_sexp); - return Rcpp::wrap(Array__cast(array, target_type, options)); - END_RCPP +std::shared_ptr Array__cast(const std::shared_ptr& array, const std::shared_ptr& target_type, const std::shared_ptr& options); +RcppExport SEXP _arrow_Array__cast(SEXP array_sexp, SEXP target_type_sexp, SEXP options_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type array(array_sexp); + Rcpp::traits::input_parameter&>::type target_type(target_type_sexp); + Rcpp::traits::input_parameter&>::type options(options_sexp); + return Rcpp::wrap(Array__cast(array, target_type, options)); +END_RCPP } #else -RcppExport SEXP _arrow_Array__cast(SEXP array_sexp, SEXP target_type_sexp, - SEXP options_sexp) { - Rf_error( - "Cannot call Array__cast(). Please use arrow::install_arrow() to install required " - "runtime libraries. "); +RcppExport SEXP _arrow_Array__cast(SEXP array_sexp, SEXP target_type_sexp, SEXP options_sexp){ + Rf_error("Cannot call Array__cast(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // compute.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr ChunkedArray__cast( - const std::shared_ptr& chunked_array, - const std::shared_ptr& target_type, - const std::shared_ptr& options); -RcppExport SEXP _arrow_ChunkedArray__cast(SEXP chunked_array_sexp, SEXP target_type_sexp, - SEXP options_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type - chunked_array(chunked_array_sexp); - Rcpp::traits::input_parameter&>::type - target_type(target_type_sexp); - Rcpp::traits::input_parameter&>::type - options(options_sexp); - return Rcpp::wrap(ChunkedArray__cast(chunked_array, target_type, options)); - END_RCPP +std::shared_ptr ChunkedArray__cast(const std::shared_ptr& chunked_array, const std::shared_ptr& target_type, const std::shared_ptr& options); +RcppExport SEXP _arrow_ChunkedArray__cast(SEXP chunked_array_sexp, SEXP target_type_sexp, SEXP options_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type chunked_array(chunked_array_sexp); + Rcpp::traits::input_parameter&>::type target_type(target_type_sexp); + Rcpp::traits::input_parameter&>::type options(options_sexp); + return Rcpp::wrap(ChunkedArray__cast(chunked_array, target_type, options)); +END_RCPP } #else -RcppExport SEXP _arrow_ChunkedArray__cast(SEXP chunked_array_sexp, SEXP target_type_sexp, - SEXP options_sexp) { - Rf_error( - "Cannot call ChunkedArray__cast(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_ChunkedArray__cast(SEXP chunked_array_sexp, SEXP target_type_sexp, SEXP options_sexp){ + Rf_error("Cannot call ChunkedArray__cast(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // compute.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr RecordBatch__cast( - const std::shared_ptr& batch, - const std::shared_ptr& schema, - const std::shared_ptr& options); -RcppExport SEXP _arrow_RecordBatch__cast(SEXP batch_sexp, SEXP schema_sexp, - SEXP options_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type batch( - batch_sexp); - Rcpp::traits::input_parameter&>::type schema( - schema_sexp); - Rcpp::traits::input_parameter&>::type - options(options_sexp); - return Rcpp::wrap(RecordBatch__cast(batch, schema, options)); - END_RCPP +std::shared_ptr RecordBatch__cast(const std::shared_ptr& batch, const std::shared_ptr& schema, const std::shared_ptr& options); +RcppExport SEXP _arrow_RecordBatch__cast(SEXP batch_sexp, SEXP schema_sexp, SEXP options_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type batch(batch_sexp); + Rcpp::traits::input_parameter&>::type schema(schema_sexp); + Rcpp::traits::input_parameter&>::type options(options_sexp); + return Rcpp::wrap(RecordBatch__cast(batch, schema, options)); +END_RCPP } #else -RcppExport SEXP _arrow_RecordBatch__cast(SEXP batch_sexp, SEXP schema_sexp, - SEXP options_sexp) { - Rf_error( - "Cannot call RecordBatch__cast(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_RecordBatch__cast(SEXP batch_sexp, SEXP schema_sexp, SEXP options_sexp){ + Rf_error("Cannot call RecordBatch__cast(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // compute.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr Table__cast( - const std::shared_ptr& table, - const std::shared_ptr& schema, - const std::shared_ptr& options); -RcppExport SEXP _arrow_Table__cast(SEXP table_sexp, SEXP schema_sexp, SEXP options_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type table( - table_sexp); - Rcpp::traits::input_parameter&>::type schema( - schema_sexp); - Rcpp::traits::input_parameter&>::type - options(options_sexp); - return Rcpp::wrap(Table__cast(table, schema, options)); - END_RCPP +std::shared_ptr Table__cast(const std::shared_ptr& table, const std::shared_ptr& schema, const std::shared_ptr& options); +RcppExport SEXP _arrow_Table__cast(SEXP table_sexp, SEXP schema_sexp, SEXP options_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type table(table_sexp); + Rcpp::traits::input_parameter&>::type schema(schema_sexp); + Rcpp::traits::input_parameter&>::type options(options_sexp); + return Rcpp::wrap(Table__cast(table, schema, options)); +END_RCPP } #else -RcppExport SEXP _arrow_Table__cast(SEXP table_sexp, SEXP schema_sexp, SEXP options_sexp) { - Rf_error( - "Cannot call Table__cast(). Please use arrow::install_arrow() to install required " - "runtime libraries. "); +RcppExport SEXP _arrow_Table__cast(SEXP table_sexp, SEXP schema_sexp, SEXP options_sexp){ + Rf_error("Cannot call Table__cast(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // compute.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr Array__Take(const std::shared_ptr& values, - const std::shared_ptr& indices); -RcppExport SEXP _arrow_Array__Take(SEXP values_sexp, SEXP indices_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type values( - values_sexp); - Rcpp::traits::input_parameter&>::type indices( - indices_sexp); - return Rcpp::wrap(Array__Take(values, indices)); - END_RCPP +std::shared_ptr Array__Take(const std::shared_ptr& values, const std::shared_ptr& indices); +RcppExport SEXP _arrow_Array__Take(SEXP values_sexp, SEXP indices_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type values(values_sexp); + Rcpp::traits::input_parameter&>::type indices(indices_sexp); + return Rcpp::wrap(Array__Take(values, indices)); +END_RCPP } #else -RcppExport SEXP _arrow_Array__Take(SEXP values_sexp, SEXP indices_sexp) { - Rf_error( - "Cannot call Array__Take(). Please use arrow::install_arrow() to install required " - "runtime libraries. "); +RcppExport SEXP _arrow_Array__Take(SEXP values_sexp, SEXP indices_sexp){ + Rf_error("Cannot call Array__Take(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // compute.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr Array__TakeChunked( - const std::shared_ptr& values, - const std::shared_ptr& indices); -RcppExport SEXP _arrow_Array__TakeChunked(SEXP values_sexp, SEXP indices_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type values( - values_sexp); - Rcpp::traits::input_parameter&>::type - indices(indices_sexp); - return Rcpp::wrap(Array__TakeChunked(values, indices)); - END_RCPP +std::shared_ptr Array__TakeChunked(const std::shared_ptr& values, const std::shared_ptr& indices); +RcppExport SEXP _arrow_Array__TakeChunked(SEXP values_sexp, SEXP indices_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type values(values_sexp); + Rcpp::traits::input_parameter&>::type indices(indices_sexp); + return Rcpp::wrap(Array__TakeChunked(values, indices)); +END_RCPP } #else -RcppExport SEXP _arrow_Array__TakeChunked(SEXP values_sexp, SEXP indices_sexp) { - Rf_error( - "Cannot call Array__TakeChunked(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_Array__TakeChunked(SEXP values_sexp, SEXP indices_sexp){ + Rf_error("Cannot call Array__TakeChunked(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // compute.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr RecordBatch__Take( - const std::shared_ptr& batch, - const std::shared_ptr& indices); -RcppExport SEXP _arrow_RecordBatch__Take(SEXP batch_sexp, SEXP indices_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type batch( - batch_sexp); - Rcpp::traits::input_parameter&>::type indices( - indices_sexp); - return Rcpp::wrap(RecordBatch__Take(batch, indices)); - END_RCPP +std::shared_ptr RecordBatch__Take(const std::shared_ptr& batch, const std::shared_ptr& indices); +RcppExport SEXP _arrow_RecordBatch__Take(SEXP batch_sexp, SEXP indices_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type batch(batch_sexp); + Rcpp::traits::input_parameter&>::type indices(indices_sexp); + return Rcpp::wrap(RecordBatch__Take(batch, indices)); +END_RCPP } #else -RcppExport SEXP _arrow_RecordBatch__Take(SEXP batch_sexp, SEXP indices_sexp) { - Rf_error( - "Cannot call RecordBatch__Take(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_RecordBatch__Take(SEXP batch_sexp, SEXP indices_sexp){ + Rf_error("Cannot call RecordBatch__Take(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // compute.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr ChunkedArray__Take( - const std::shared_ptr& values, - const std::shared_ptr& indices); -RcppExport SEXP _arrow_ChunkedArray__Take(SEXP values_sexp, SEXP indices_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type values( - values_sexp); - Rcpp::traits::input_parameter&>::type indices( - indices_sexp); - return Rcpp::wrap(ChunkedArray__Take(values, indices)); - END_RCPP +std::shared_ptr ChunkedArray__Take(const std::shared_ptr& values, const std::shared_ptr& indices); +RcppExport SEXP _arrow_ChunkedArray__Take(SEXP values_sexp, SEXP indices_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type values(values_sexp); + Rcpp::traits::input_parameter&>::type indices(indices_sexp); + return Rcpp::wrap(ChunkedArray__Take(values, indices)); +END_RCPP } #else -RcppExport SEXP _arrow_ChunkedArray__Take(SEXP values_sexp, SEXP indices_sexp) { - Rf_error( - "Cannot call ChunkedArray__Take(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_ChunkedArray__Take(SEXP values_sexp, SEXP indices_sexp){ + Rf_error("Cannot call ChunkedArray__Take(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // compute.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr ChunkedArray__TakeChunked( - const std::shared_ptr& values, - const std::shared_ptr& indices); -RcppExport SEXP _arrow_ChunkedArray__TakeChunked(SEXP values_sexp, SEXP indices_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type values( - values_sexp); - Rcpp::traits::input_parameter&>::type - indices(indices_sexp); - return Rcpp::wrap(ChunkedArray__TakeChunked(values, indices)); - END_RCPP +std::shared_ptr ChunkedArray__TakeChunked(const std::shared_ptr& values, const std::shared_ptr& indices); +RcppExport SEXP _arrow_ChunkedArray__TakeChunked(SEXP values_sexp, SEXP indices_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type values(values_sexp); + Rcpp::traits::input_parameter&>::type indices(indices_sexp); + return Rcpp::wrap(ChunkedArray__TakeChunked(values, indices)); +END_RCPP } #else -RcppExport SEXP _arrow_ChunkedArray__TakeChunked(SEXP values_sexp, SEXP indices_sexp) { - Rf_error( - "Cannot call ChunkedArray__TakeChunked(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_ChunkedArray__TakeChunked(SEXP values_sexp, SEXP indices_sexp){ + Rf_error("Cannot call ChunkedArray__TakeChunked(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // compute.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr Table__Take(const std::shared_ptr& table, - const std::shared_ptr& indices); -RcppExport SEXP _arrow_Table__Take(SEXP table_sexp, SEXP indices_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type table( - table_sexp); - Rcpp::traits::input_parameter&>::type indices( - indices_sexp); - return Rcpp::wrap(Table__Take(table, indices)); - END_RCPP +std::shared_ptr Table__Take(const std::shared_ptr& table, const std::shared_ptr& indices); +RcppExport SEXP _arrow_Table__Take(SEXP table_sexp, SEXP indices_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type table(table_sexp); + Rcpp::traits::input_parameter&>::type indices(indices_sexp); + return Rcpp::wrap(Table__Take(table, indices)); +END_RCPP } #else -RcppExport SEXP _arrow_Table__Take(SEXP table_sexp, SEXP indices_sexp) { - Rf_error( - "Cannot call Table__Take(). Please use arrow::install_arrow() to install required " - "runtime libraries. "); +RcppExport SEXP _arrow_Table__Take(SEXP table_sexp, SEXP indices_sexp){ + Rf_error("Cannot call Table__Take(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // compute.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr Table__TakeChunked( - const std::shared_ptr& table, - const std::shared_ptr& indices); -RcppExport SEXP _arrow_Table__TakeChunked(SEXP table_sexp, SEXP indices_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type table( - table_sexp); - Rcpp::traits::input_parameter&>::type - indices(indices_sexp); - return Rcpp::wrap(Table__TakeChunked(table, indices)); - END_RCPP +std::shared_ptr Table__TakeChunked(const std::shared_ptr& table, const std::shared_ptr& indices); +RcppExport SEXP _arrow_Table__TakeChunked(SEXP table_sexp, SEXP indices_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type table(table_sexp); + Rcpp::traits::input_parameter&>::type indices(indices_sexp); + return Rcpp::wrap(Table__TakeChunked(table, indices)); +END_RCPP } #else -RcppExport SEXP _arrow_Table__TakeChunked(SEXP table_sexp, SEXP indices_sexp) { - Rf_error( - "Cannot call Table__TakeChunked(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_Table__TakeChunked(SEXP table_sexp, SEXP indices_sexp){ + Rf_error("Cannot call Table__TakeChunked(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // compute.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr Array__Filter(const std::shared_ptr& values, - const std::shared_ptr& filter); -RcppExport SEXP _arrow_Array__Filter(SEXP values_sexp, SEXP filter_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type values( - values_sexp); - Rcpp::traits::input_parameter&>::type filter( - filter_sexp); - return Rcpp::wrap(Array__Filter(values, filter)); - END_RCPP +std::shared_ptr Array__Filter(const std::shared_ptr& values, const std::shared_ptr& filter); +RcppExport SEXP _arrow_Array__Filter(SEXP values_sexp, SEXP filter_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type values(values_sexp); + Rcpp::traits::input_parameter&>::type filter(filter_sexp); + return Rcpp::wrap(Array__Filter(values, filter)); +END_RCPP } #else -RcppExport SEXP _arrow_Array__Filter(SEXP values_sexp, SEXP filter_sexp) { - Rf_error( - "Cannot call Array__Filter(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_Array__Filter(SEXP values_sexp, SEXP filter_sexp){ + Rf_error("Cannot call Array__Filter(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // compute.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr RecordBatch__Filter( - const std::shared_ptr& batch, - const std::shared_ptr& filter); -RcppExport SEXP _arrow_RecordBatch__Filter(SEXP batch_sexp, SEXP filter_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type batch( - batch_sexp); - Rcpp::traits::input_parameter&>::type filter( - filter_sexp); - return Rcpp::wrap(RecordBatch__Filter(batch, filter)); - END_RCPP +std::shared_ptr RecordBatch__Filter(const std::shared_ptr& batch, const std::shared_ptr& filter); +RcppExport SEXP _arrow_RecordBatch__Filter(SEXP batch_sexp, SEXP filter_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type batch(batch_sexp); + Rcpp::traits::input_parameter&>::type filter(filter_sexp); + return Rcpp::wrap(RecordBatch__Filter(batch, filter)); +END_RCPP } #else -RcppExport SEXP _arrow_RecordBatch__Filter(SEXP batch_sexp, SEXP filter_sexp) { - Rf_error( - "Cannot call RecordBatch__Filter(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_RecordBatch__Filter(SEXP batch_sexp, SEXP filter_sexp){ + Rf_error("Cannot call RecordBatch__Filter(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // compute.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr ChunkedArray__Filter( - const std::shared_ptr& values, - const std::shared_ptr& filter); -RcppExport SEXP _arrow_ChunkedArray__Filter(SEXP values_sexp, SEXP filter_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type values( - values_sexp); - Rcpp::traits::input_parameter&>::type filter( - filter_sexp); - return Rcpp::wrap(ChunkedArray__Filter(values, filter)); - END_RCPP +std::shared_ptr ChunkedArray__Filter(const std::shared_ptr& values, const std::shared_ptr& filter); +RcppExport SEXP _arrow_ChunkedArray__Filter(SEXP values_sexp, SEXP filter_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type values(values_sexp); + Rcpp::traits::input_parameter&>::type filter(filter_sexp); + return Rcpp::wrap(ChunkedArray__Filter(values, filter)); +END_RCPP } #else -RcppExport SEXP _arrow_ChunkedArray__Filter(SEXP values_sexp, SEXP filter_sexp) { - Rf_error( - "Cannot call ChunkedArray__Filter(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_ChunkedArray__Filter(SEXP values_sexp, SEXP filter_sexp){ + Rf_error("Cannot call ChunkedArray__Filter(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // compute.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr ChunkedArray__FilterChunked( - const std::shared_ptr& values, - const std::shared_ptr& filter); -RcppExport SEXP _arrow_ChunkedArray__FilterChunked(SEXP values_sexp, SEXP filter_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type values( - values_sexp); - Rcpp::traits::input_parameter&>::type filter( - filter_sexp); - return Rcpp::wrap(ChunkedArray__FilterChunked(values, filter)); - END_RCPP +std::shared_ptr ChunkedArray__FilterChunked(const std::shared_ptr& values, const std::shared_ptr& filter); +RcppExport SEXP _arrow_ChunkedArray__FilterChunked(SEXP values_sexp, SEXP filter_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type values(values_sexp); + Rcpp::traits::input_parameter&>::type filter(filter_sexp); + return Rcpp::wrap(ChunkedArray__FilterChunked(values, filter)); +END_RCPP } #else -RcppExport SEXP _arrow_ChunkedArray__FilterChunked(SEXP values_sexp, SEXP filter_sexp) { - Rf_error( - "Cannot call ChunkedArray__FilterChunked(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_ChunkedArray__FilterChunked(SEXP values_sexp, SEXP filter_sexp){ + Rf_error("Cannot call ChunkedArray__FilterChunked(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // compute.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr Table__Filter(const std::shared_ptr& table, - const std::shared_ptr& filter); -RcppExport SEXP _arrow_Table__Filter(SEXP table_sexp, SEXP filter_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type table( - table_sexp); - Rcpp::traits::input_parameter&>::type filter( - filter_sexp); - return Rcpp::wrap(Table__Filter(table, filter)); - END_RCPP +std::shared_ptr Table__Filter(const std::shared_ptr& table, const std::shared_ptr& filter); +RcppExport SEXP _arrow_Table__Filter(SEXP table_sexp, SEXP filter_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type table(table_sexp); + Rcpp::traits::input_parameter&>::type filter(filter_sexp); + return Rcpp::wrap(Table__Filter(table, filter)); +END_RCPP } #else -RcppExport SEXP _arrow_Table__Filter(SEXP table_sexp, SEXP filter_sexp) { - Rf_error( - "Cannot call Table__Filter(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_Table__Filter(SEXP table_sexp, SEXP filter_sexp){ + Rf_error("Cannot call Table__Filter(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // compute.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr Table__FilterChunked( - const std::shared_ptr& table, - const std::shared_ptr& filter); -RcppExport SEXP _arrow_Table__FilterChunked(SEXP table_sexp, SEXP filter_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type table( - table_sexp); - Rcpp::traits::input_parameter&>::type filter( - filter_sexp); - return Rcpp::wrap(Table__FilterChunked(table, filter)); - END_RCPP +std::shared_ptr Table__FilterChunked(const std::shared_ptr& table, const std::shared_ptr& filter); +RcppExport SEXP _arrow_Table__FilterChunked(SEXP table_sexp, SEXP filter_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type table(table_sexp); + Rcpp::traits::input_parameter&>::type filter(filter_sexp); + return Rcpp::wrap(Table__FilterChunked(table, filter)); +END_RCPP } #else -RcppExport SEXP _arrow_Table__FilterChunked(SEXP table_sexp, SEXP filter_sexp) { - Rf_error( - "Cannot call Table__FilterChunked(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_Table__FilterChunked(SEXP table_sexp, SEXP filter_sexp){ + Rf_error("Cannot call Table__FilterChunked(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // csv.cpp #if defined(ARROW_R_WITH_ARROW) std::shared_ptr csv___ReadOptions__initialize(List_ options); -RcppExport SEXP _arrow_csv___ReadOptions__initialize(SEXP options_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter::type options(options_sexp); - return Rcpp::wrap(csv___ReadOptions__initialize(options)); - END_RCPP +RcppExport SEXP _arrow_csv___ReadOptions__initialize(SEXP options_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter::type options(options_sexp); + return Rcpp::wrap(csv___ReadOptions__initialize(options)); +END_RCPP } #else -RcppExport SEXP _arrow_csv___ReadOptions__initialize(SEXP options_sexp) { - Rf_error( - "Cannot call csv___ReadOptions__initialize(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_csv___ReadOptions__initialize(SEXP options_sexp){ + Rf_error("Cannot call csv___ReadOptions__initialize(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // csv.cpp #if defined(ARROW_R_WITH_ARROW) std::shared_ptr csv___ParseOptions__initialize(List_ options); -RcppExport SEXP _arrow_csv___ParseOptions__initialize(SEXP options_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter::type options(options_sexp); - return Rcpp::wrap(csv___ParseOptions__initialize(options)); - END_RCPP +RcppExport SEXP _arrow_csv___ParseOptions__initialize(SEXP options_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter::type options(options_sexp); + return Rcpp::wrap(csv___ParseOptions__initialize(options)); +END_RCPP } #else -RcppExport SEXP _arrow_csv___ParseOptions__initialize(SEXP options_sexp) { - Rf_error( - "Cannot call csv___ParseOptions__initialize(). Please use arrow::install_arrow() " - "to install required runtime libraries. "); +RcppExport SEXP _arrow_csv___ParseOptions__initialize(SEXP options_sexp){ + Rf_error("Cannot call csv___ParseOptions__initialize(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // csv.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr csv___ConvertOptions__initialize( - List_ options); -RcppExport SEXP _arrow_csv___ConvertOptions__initialize(SEXP options_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter::type options(options_sexp); - return Rcpp::wrap(csv___ConvertOptions__initialize(options)); - END_RCPP +std::shared_ptr csv___ConvertOptions__initialize(List_ options); +RcppExport SEXP _arrow_csv___ConvertOptions__initialize(SEXP options_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter::type options(options_sexp); + return Rcpp::wrap(csv___ConvertOptions__initialize(options)); +END_RCPP } #else -RcppExport SEXP _arrow_csv___ConvertOptions__initialize(SEXP options_sexp) { - Rf_error( - "Cannot call csv___ConvertOptions__initialize(). Please use arrow::install_arrow() " - "to install required runtime libraries. "); +RcppExport SEXP _arrow_csv___ConvertOptions__initialize(SEXP options_sexp){ + Rf_error("Cannot call csv___ConvertOptions__initialize(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // csv.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr csv___TableReader__Make( - const std::shared_ptr& input, - const std::shared_ptr& read_options, - const std::shared_ptr& parse_options, - const std::shared_ptr& convert_options); -RcppExport SEXP _arrow_csv___TableReader__Make(SEXP input_sexp, SEXP read_options_sexp, - SEXP parse_options_sexp, - SEXP convert_options_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type - input(input_sexp); - Rcpp::traits::input_parameter&>::type - read_options(read_options_sexp); - Rcpp::traits::input_parameter&>::type - parse_options(parse_options_sexp); - Rcpp::traits::input_parameter&>::type - convert_options(convert_options_sexp); - return Rcpp::wrap( - csv___TableReader__Make(input, read_options, parse_options, convert_options)); - END_RCPP -} -#else -RcppExport SEXP _arrow_csv___TableReader__Make(SEXP input_sexp, SEXP read_options_sexp, - SEXP parse_options_sexp, - SEXP convert_options_sexp) { - Rf_error( - "Cannot call csv___TableReader__Make(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +std::shared_ptr csv___TableReader__Make(const std::shared_ptr& input, const std::shared_ptr& read_options, const std::shared_ptr& parse_options, const std::shared_ptr& convert_options); +RcppExport SEXP _arrow_csv___TableReader__Make(SEXP input_sexp, SEXP read_options_sexp, SEXP parse_options_sexp, SEXP convert_options_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type input(input_sexp); + Rcpp::traits::input_parameter&>::type read_options(read_options_sexp); + Rcpp::traits::input_parameter&>::type parse_options(parse_options_sexp); + Rcpp::traits::input_parameter&>::type convert_options(convert_options_sexp); + return Rcpp::wrap(csv___TableReader__Make(input, read_options, parse_options, convert_options)); +END_RCPP +} +#else +RcppExport SEXP _arrow_csv___TableReader__Make(SEXP input_sexp, SEXP read_options_sexp, SEXP parse_options_sexp, SEXP convert_options_sexp){ + Rf_error("Cannot call csv___TableReader__Make(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // csv.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr csv___TableReader__Read( - const std::shared_ptr& table_reader); -RcppExport SEXP _arrow_csv___TableReader__Read(SEXP table_reader_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type - table_reader(table_reader_sexp); - return Rcpp::wrap(csv___TableReader__Read(table_reader)); - END_RCPP +std::shared_ptr csv___TableReader__Read(const std::shared_ptr& table_reader); +RcppExport SEXP _arrow_csv___TableReader__Read(SEXP table_reader_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type table_reader(table_reader_sexp); + return Rcpp::wrap(csv___TableReader__Read(table_reader)); +END_RCPP } #else -RcppExport SEXP _arrow_csv___TableReader__Read(SEXP table_reader_sexp) { - Rf_error( - "Cannot call csv___TableReader__Read(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_csv___TableReader__Read(SEXP table_reader_sexp){ + Rf_error("Cannot call csv___TableReader__Read(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // dataset.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr dataset___FSSFactory__Make2( - const std::shared_ptr& fs, - const std::shared_ptr& selector, - const std::shared_ptr& format, - const std::shared_ptr& partitioning); -RcppExport SEXP _arrow_dataset___FSSFactory__Make2(SEXP fs_sexp, SEXP selector_sexp, - SEXP format_sexp, - SEXP partitioning_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type fs(fs_sexp); - Rcpp::traits::input_parameter&>::type selector( - selector_sexp); - Rcpp::traits::input_parameter&>::type format( - format_sexp); - Rcpp::traits::input_parameter&>::type - partitioning(partitioning_sexp); - return Rcpp::wrap(dataset___FSSFactory__Make2(fs, selector, format, partitioning)); - END_RCPP -} -#else -RcppExport SEXP _arrow_dataset___FSSFactory__Make2(SEXP fs_sexp, SEXP selector_sexp, - SEXP format_sexp, - SEXP partitioning_sexp) { - Rf_error( - "Cannot call dataset___FSSFactory__Make2(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +std::shared_ptr dataset___FSSFactory__Make2(const std::shared_ptr& fs, const std::shared_ptr& selector, const std::shared_ptr& format, const std::shared_ptr& partitioning); +RcppExport SEXP _arrow_dataset___FSSFactory__Make2(SEXP fs_sexp, SEXP selector_sexp, SEXP format_sexp, SEXP partitioning_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type fs(fs_sexp); + Rcpp::traits::input_parameter&>::type selector(selector_sexp); + Rcpp::traits::input_parameter&>::type format(format_sexp); + Rcpp::traits::input_parameter&>::type partitioning(partitioning_sexp); + return Rcpp::wrap(dataset___FSSFactory__Make2(fs, selector, format, partitioning)); +END_RCPP +} +#else +RcppExport SEXP _arrow_dataset___FSSFactory__Make2(SEXP fs_sexp, SEXP selector_sexp, SEXP format_sexp, SEXP partitioning_sexp){ + Rf_error("Cannot call dataset___FSSFactory__Make2(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // dataset.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr dataset___FSSFactory__Make1( - const std::shared_ptr& fs, - const std::shared_ptr& selector, - const std::shared_ptr& format); -RcppExport SEXP _arrow_dataset___FSSFactory__Make1(SEXP fs_sexp, SEXP selector_sexp, - SEXP format_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type fs(fs_sexp); - Rcpp::traits::input_parameter&>::type selector( - selector_sexp); - Rcpp::traits::input_parameter&>::type format( - format_sexp); - return Rcpp::wrap(dataset___FSSFactory__Make1(fs, selector, format)); - END_RCPP +std::shared_ptr dataset___FSSFactory__Make1(const std::shared_ptr& fs, const std::shared_ptr& selector, const std::shared_ptr& format); +RcppExport SEXP _arrow_dataset___FSSFactory__Make1(SEXP fs_sexp, SEXP selector_sexp, SEXP format_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type fs(fs_sexp); + Rcpp::traits::input_parameter&>::type selector(selector_sexp); + Rcpp::traits::input_parameter&>::type format(format_sexp); + return Rcpp::wrap(dataset___FSSFactory__Make1(fs, selector, format)); +END_RCPP } #else -RcppExport SEXP _arrow_dataset___FSSFactory__Make1(SEXP fs_sexp, SEXP selector_sexp, - SEXP format_sexp) { - Rf_error( - "Cannot call dataset___FSSFactory__Make1(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_dataset___FSSFactory__Make1(SEXP fs_sexp, SEXP selector_sexp, SEXP format_sexp){ + Rf_error("Cannot call dataset___FSSFactory__Make1(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // dataset.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr dataset___FSSFactory__Make3( - const std::shared_ptr& fs, - const std::shared_ptr& selector, - const std::shared_ptr& format, - const std::shared_ptr& factory); -RcppExport SEXP _arrow_dataset___FSSFactory__Make3(SEXP fs_sexp, SEXP selector_sexp, - SEXP format_sexp, SEXP factory_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type fs(fs_sexp); - Rcpp::traits::input_parameter&>::type selector( - selector_sexp); - Rcpp::traits::input_parameter&>::type format( - format_sexp); - Rcpp::traits::input_parameter&>::type - factory(factory_sexp); - return Rcpp::wrap(dataset___FSSFactory__Make3(fs, selector, format, factory)); - END_RCPP -} -#else -RcppExport SEXP _arrow_dataset___FSSFactory__Make3(SEXP fs_sexp, SEXP selector_sexp, - SEXP format_sexp, SEXP factory_sexp) { - Rf_error( - "Cannot call dataset___FSSFactory__Make3(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +std::shared_ptr dataset___FSSFactory__Make3(const std::shared_ptr& fs, const std::shared_ptr& selector, const std::shared_ptr& format, const std::shared_ptr& factory); +RcppExport SEXP _arrow_dataset___FSSFactory__Make3(SEXP fs_sexp, SEXP selector_sexp, SEXP format_sexp, SEXP factory_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type fs(fs_sexp); + Rcpp::traits::input_parameter&>::type selector(selector_sexp); + Rcpp::traits::input_parameter&>::type format(format_sexp); + Rcpp::traits::input_parameter&>::type factory(factory_sexp); + return Rcpp::wrap(dataset___FSSFactory__Make3(fs, selector, format, factory)); +END_RCPP +} +#else +RcppExport SEXP _arrow_dataset___FSSFactory__Make3(SEXP fs_sexp, SEXP selector_sexp, SEXP format_sexp, SEXP factory_sexp){ + Rf_error("Cannot call dataset___FSSFactory__Make3(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // dataset.cpp #if defined(ARROW_R_WITH_ARROW) -std::string dataset___FileFormat__type_name( - const std::shared_ptr& format); -RcppExport SEXP _arrow_dataset___FileFormat__type_name(SEXP format_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type format( - format_sexp); - return Rcpp::wrap(dataset___FileFormat__type_name(format)); - END_RCPP +std::string dataset___FileFormat__type_name(const std::shared_ptr& format); +RcppExport SEXP _arrow_dataset___FileFormat__type_name(SEXP format_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type format(format_sexp); + return Rcpp::wrap(dataset___FileFormat__type_name(format)); +END_RCPP } #else -RcppExport SEXP _arrow_dataset___FileFormat__type_name(SEXP format_sexp) { - Rf_error( - "Cannot call dataset___FileFormat__type_name(). Please use arrow::install_arrow() " - "to install required runtime libraries. "); +RcppExport SEXP _arrow_dataset___FileFormat__type_name(SEXP format_sexp){ + Rf_error("Cannot call dataset___FileFormat__type_name(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // dataset.cpp #if defined(ARROW_R_WITH_ARROW) std::shared_ptr dataset___ParquetFileFormat__Make(List_ options); -RcppExport SEXP _arrow_dataset___ParquetFileFormat__Make(SEXP options_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter::type options(options_sexp); - return Rcpp::wrap(dataset___ParquetFileFormat__Make(options)); - END_RCPP +RcppExport SEXP _arrow_dataset___ParquetFileFormat__Make(SEXP options_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter::type options(options_sexp); + return Rcpp::wrap(dataset___ParquetFileFormat__Make(options)); +END_RCPP } #else -RcppExport SEXP _arrow_dataset___ParquetFileFormat__Make(SEXP options_sexp) { - Rf_error( - "Cannot call dataset___ParquetFileFormat__Make(). Please use " - "arrow::install_arrow() to install required runtime libraries. "); +RcppExport SEXP _arrow_dataset___ParquetFileFormat__Make(SEXP options_sexp){ + Rf_error("Cannot call dataset___ParquetFileFormat__Make(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // dataset.cpp #if defined(ARROW_R_WITH_ARROW) std::shared_ptr dataset___IpcFileFormat__Make(List_ options); -RcppExport SEXP _arrow_dataset___IpcFileFormat__Make(SEXP options_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter::type options(options_sexp); - return Rcpp::wrap(dataset___IpcFileFormat__Make(options)); - END_RCPP +RcppExport SEXP _arrow_dataset___IpcFileFormat__Make(SEXP options_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter::type options(options_sexp); + return Rcpp::wrap(dataset___IpcFileFormat__Make(options)); +END_RCPP } #else -RcppExport SEXP _arrow_dataset___IpcFileFormat__Make(SEXP options_sexp) { - Rf_error( - "Cannot call dataset___IpcFileFormat__Make(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_dataset___IpcFileFormat__Make(SEXP options_sexp){ + Rf_error("Cannot call dataset___IpcFileFormat__Make(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // dataset.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr dataset___SFactory__Finish1( - const std::shared_ptr& factory); -RcppExport SEXP _arrow_dataset___SFactory__Finish1(SEXP factory_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type factory( - factory_sexp); - return Rcpp::wrap(dataset___SFactory__Finish1(factory)); - END_RCPP +std::shared_ptr dataset___SFactory__Finish1(const std::shared_ptr& factory); +RcppExport SEXP _arrow_dataset___SFactory__Finish1(SEXP factory_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type factory(factory_sexp); + return Rcpp::wrap(dataset___SFactory__Finish1(factory)); +END_RCPP } #else -RcppExport SEXP _arrow_dataset___SFactory__Finish1(SEXP factory_sexp) { - Rf_error( - "Cannot call dataset___SFactory__Finish1(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_dataset___SFactory__Finish1(SEXP factory_sexp){ + Rf_error("Cannot call dataset___SFactory__Finish1(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // dataset.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr dataset___SFactory__Finish2( - const std::shared_ptr& factory, - const std::shared_ptr& schema); -RcppExport SEXP _arrow_dataset___SFactory__Finish2(SEXP factory_sexp, SEXP schema_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type factory( - factory_sexp); - Rcpp::traits::input_parameter&>::type schema( - schema_sexp); - return Rcpp::wrap(dataset___SFactory__Finish2(factory, schema)); - END_RCPP +std::shared_ptr dataset___SFactory__Finish2(const std::shared_ptr& factory, const std::shared_ptr& schema); +RcppExport SEXP _arrow_dataset___SFactory__Finish2(SEXP factory_sexp, SEXP schema_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type factory(factory_sexp); + Rcpp::traits::input_parameter&>::type schema(schema_sexp); + return Rcpp::wrap(dataset___SFactory__Finish2(factory, schema)); +END_RCPP } #else -RcppExport SEXP _arrow_dataset___SFactory__Finish2(SEXP factory_sexp, SEXP schema_sexp) { - Rf_error( - "Cannot call dataset___SFactory__Finish2(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_dataset___SFactory__Finish2(SEXP factory_sexp, SEXP schema_sexp){ + Rf_error("Cannot call dataset___SFactory__Finish2(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // dataset.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr dataset___SFactory__Inspect( - const std::shared_ptr& factory); -RcppExport SEXP _arrow_dataset___SFactory__Inspect(SEXP factory_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type factory( - factory_sexp); - return Rcpp::wrap(dataset___SFactory__Inspect(factory)); - END_RCPP +std::shared_ptr dataset___SFactory__Inspect(const std::shared_ptr& factory); +RcppExport SEXP _arrow_dataset___SFactory__Inspect(SEXP factory_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type factory(factory_sexp); + return Rcpp::wrap(dataset___SFactory__Inspect(factory)); +END_RCPP } #else -RcppExport SEXP _arrow_dataset___SFactory__Inspect(SEXP factory_sexp) { - Rf_error( - "Cannot call dataset___SFactory__Inspect(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_dataset___SFactory__Inspect(SEXP factory_sexp){ + Rf_error("Cannot call dataset___SFactory__Inspect(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // dataset.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr dataset___Source__schema( - const std::shared_ptr& source); -RcppExport SEXP _arrow_dataset___Source__schema(SEXP source_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type source( - source_sexp); - return Rcpp::wrap(dataset___Source__schema(source)); - END_RCPP +std::shared_ptr dataset___Source__schema(const std::shared_ptr& source); +RcppExport SEXP _arrow_dataset___Source__schema(SEXP source_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type source(source_sexp); + return Rcpp::wrap(dataset___Source__schema(source)); +END_RCPP } #else -RcppExport SEXP _arrow_dataset___Source__schema(SEXP source_sexp) { - Rf_error( - "Cannot call dataset___Source__schema(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_dataset___Source__schema(SEXP source_sexp){ + Rf_error("Cannot call dataset___Source__schema(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // dataset.cpp #if defined(ARROW_R_WITH_ARROW) std::string dataset___Source__type_name(const std::shared_ptr& source); -RcppExport SEXP _arrow_dataset___Source__type_name(SEXP source_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type source( - source_sexp); - return Rcpp::wrap(dataset___Source__type_name(source)); - END_RCPP +RcppExport SEXP _arrow_dataset___Source__type_name(SEXP source_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type source(source_sexp); + return Rcpp::wrap(dataset___Source__type_name(source)); +END_RCPP } #else -RcppExport SEXP _arrow_dataset___Source__type_name(SEXP source_sexp) { - Rf_error( - "Cannot call dataset___Source__type_name(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_dataset___Source__type_name(SEXP source_sexp){ + Rf_error("Cannot call dataset___Source__type_name(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // dataset.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr dataset___FSSource__format( - const std::shared_ptr& source); -RcppExport SEXP _arrow_dataset___FSSource__format(SEXP source_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type - source(source_sexp); - return Rcpp::wrap(dataset___FSSource__format(source)); - END_RCPP +std::shared_ptr dataset___FSSource__format(const std::shared_ptr& source); +RcppExport SEXP _arrow_dataset___FSSource__format(SEXP source_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type source(source_sexp); + return Rcpp::wrap(dataset___FSSource__format(source)); +END_RCPP } #else -RcppExport SEXP _arrow_dataset___FSSource__format(SEXP source_sexp) { - Rf_error( - "Cannot call dataset___FSSource__format(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_dataset___FSSource__format(SEXP source_sexp){ + Rf_error("Cannot call dataset___FSSource__format(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // dataset.cpp #if defined(ARROW_R_WITH_ARROW) -std::vector dataset___FSSource__files( - const std::shared_ptr& source); -RcppExport SEXP _arrow_dataset___FSSource__files(SEXP source_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type - source(source_sexp); - return Rcpp::wrap(dataset___FSSource__files(source)); - END_RCPP +std::vector dataset___FSSource__files(const std::shared_ptr& source); +RcppExport SEXP _arrow_dataset___FSSource__files(SEXP source_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type source(source_sexp); + return Rcpp::wrap(dataset___FSSource__files(source)); +END_RCPP } #else -RcppExport SEXP _arrow_dataset___FSSource__files(SEXP source_sexp) { - Rf_error( - "Cannot call dataset___FSSource__files(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_dataset___FSSource__files(SEXP source_sexp){ + Rf_error("Cannot call dataset___FSSource__files(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // dataset.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr dataset___DFactory__Make( - const std::vector>& sources); -RcppExport SEXP _arrow_dataset___DFactory__Make(SEXP sources_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter< - const std::vector>&>::type sources(sources_sexp); - return Rcpp::wrap(dataset___DFactory__Make(sources)); - END_RCPP +std::shared_ptr dataset___DFactory__Make(const std::vector>& sources); +RcppExport SEXP _arrow_dataset___DFactory__Make(SEXP sources_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter>&>::type sources(sources_sexp); + return Rcpp::wrap(dataset___DFactory__Make(sources)); +END_RCPP } #else -RcppExport SEXP _arrow_dataset___DFactory__Make(SEXP sources_sexp) { - Rf_error( - "Cannot call dataset___DFactory__Make(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_dataset___DFactory__Make(SEXP sources_sexp){ + Rf_error("Cannot call dataset___DFactory__Make(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // dataset.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr dataset___DFactory__Inspect( - const std::shared_ptr& factory); -RcppExport SEXP _arrow_dataset___DFactory__Inspect(SEXP factory_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type factory( - factory_sexp); - return Rcpp::wrap(dataset___DFactory__Inspect(factory)); - END_RCPP +std::shared_ptr dataset___DFactory__Inspect(const std::shared_ptr& factory); +RcppExport SEXP _arrow_dataset___DFactory__Inspect(SEXP factory_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type factory(factory_sexp); + return Rcpp::wrap(dataset___DFactory__Inspect(factory)); +END_RCPP } #else -RcppExport SEXP _arrow_dataset___DFactory__Inspect(SEXP factory_sexp) { - Rf_error( - "Cannot call dataset___DFactory__Inspect(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_dataset___DFactory__Inspect(SEXP factory_sexp){ + Rf_error("Cannot call dataset___DFactory__Inspect(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // dataset.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr dataset___DFactory__Finish1( - const std::shared_ptr& factory); -RcppExport SEXP _arrow_dataset___DFactory__Finish1(SEXP factory_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type factory( - factory_sexp); - return Rcpp::wrap(dataset___DFactory__Finish1(factory)); - END_RCPP +std::shared_ptr dataset___DFactory__Finish1(const std::shared_ptr& factory); +RcppExport SEXP _arrow_dataset___DFactory__Finish1(SEXP factory_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type factory(factory_sexp); + return Rcpp::wrap(dataset___DFactory__Finish1(factory)); +END_RCPP } #else -RcppExport SEXP _arrow_dataset___DFactory__Finish1(SEXP factory_sexp) { - Rf_error( - "Cannot call dataset___DFactory__Finish1(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_dataset___DFactory__Finish1(SEXP factory_sexp){ + Rf_error("Cannot call dataset___DFactory__Finish1(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // dataset.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr dataset___DFactory__Finish2( - const std::shared_ptr& factory, - const std::shared_ptr& schema); -RcppExport SEXP _arrow_dataset___DFactory__Finish2(SEXP factory_sexp, SEXP schema_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type factory( - factory_sexp); - Rcpp::traits::input_parameter&>::type schema( - schema_sexp); - return Rcpp::wrap(dataset___DFactory__Finish2(factory, schema)); - END_RCPP +std::shared_ptr dataset___DFactory__Finish2(const std::shared_ptr& factory, const std::shared_ptr& schema); +RcppExport SEXP _arrow_dataset___DFactory__Finish2(SEXP factory_sexp, SEXP schema_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type factory(factory_sexp); + Rcpp::traits::input_parameter&>::type schema(schema_sexp); + return Rcpp::wrap(dataset___DFactory__Finish2(factory, schema)); +END_RCPP } #else -RcppExport SEXP _arrow_dataset___DFactory__Finish2(SEXP factory_sexp, SEXP schema_sexp) { - Rf_error( - "Cannot call dataset___DFactory__Finish2(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_dataset___DFactory__Finish2(SEXP factory_sexp, SEXP schema_sexp){ + Rf_error("Cannot call dataset___DFactory__Finish2(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // dataset.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr dataset___DirectoryPartitioning( - const std::shared_ptr& schm); -RcppExport SEXP _arrow_dataset___DirectoryPartitioning(SEXP schm_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type schm( - schm_sexp); - return Rcpp::wrap(dataset___DirectoryPartitioning(schm)); - END_RCPP +std::shared_ptr dataset___DirectoryPartitioning(const std::shared_ptr& schm); +RcppExport SEXP _arrow_dataset___DirectoryPartitioning(SEXP schm_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type schm(schm_sexp); + return Rcpp::wrap(dataset___DirectoryPartitioning(schm)); +END_RCPP } #else -RcppExport SEXP _arrow_dataset___DirectoryPartitioning(SEXP schm_sexp) { - Rf_error( - "Cannot call dataset___DirectoryPartitioning(). Please use arrow::install_arrow() " - "to install required runtime libraries. "); +RcppExport SEXP _arrow_dataset___DirectoryPartitioning(SEXP schm_sexp){ + Rf_error("Cannot call dataset___DirectoryPartitioning(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // dataset.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr dataset___DirectoryPartitioning__MakeFactory( - const std::vector& field_names); -RcppExport SEXP -_arrow_dataset___DirectoryPartitioning__MakeFactory(SEXP field_names_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type field_names( - field_names_sexp); - return Rcpp::wrap(dataset___DirectoryPartitioning__MakeFactory(field_names)); - END_RCPP +std::shared_ptr dataset___DirectoryPartitioning__MakeFactory(const std::vector& field_names); +RcppExport SEXP _arrow_dataset___DirectoryPartitioning__MakeFactory(SEXP field_names_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type field_names(field_names_sexp); + return Rcpp::wrap(dataset___DirectoryPartitioning__MakeFactory(field_names)); +END_RCPP } #else -RcppExport SEXP -_arrow_dataset___DirectoryPartitioning__MakeFactory(SEXP field_names_sexp) { - Rf_error( - "Cannot call dataset___DirectoryPartitioning__MakeFactory(). Please use " - "arrow::install_arrow() to install required runtime libraries. "); +RcppExport SEXP _arrow_dataset___DirectoryPartitioning__MakeFactory(SEXP field_names_sexp){ + Rf_error("Cannot call dataset___DirectoryPartitioning__MakeFactory(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // dataset.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr dataset___HivePartitioning( - const std::shared_ptr& schm); -RcppExport SEXP _arrow_dataset___HivePartitioning(SEXP schm_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type schm( - schm_sexp); - return Rcpp::wrap(dataset___HivePartitioning(schm)); - END_RCPP +std::shared_ptr dataset___HivePartitioning(const std::shared_ptr& schm); +RcppExport SEXP _arrow_dataset___HivePartitioning(SEXP schm_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type schm(schm_sexp); + return Rcpp::wrap(dataset___HivePartitioning(schm)); +END_RCPP } #else -RcppExport SEXP _arrow_dataset___HivePartitioning(SEXP schm_sexp) { - Rf_error( - "Cannot call dataset___HivePartitioning(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_dataset___HivePartitioning(SEXP schm_sexp){ + Rf_error("Cannot call dataset___HivePartitioning(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // dataset.cpp #if defined(ARROW_R_WITH_ARROW) std::shared_ptr dataset___HivePartitioning__MakeFactory(); -RcppExport SEXP _arrow_dataset___HivePartitioning__MakeFactory() { - BEGIN_RCPP - return Rcpp::wrap(dataset___HivePartitioning__MakeFactory()); - END_RCPP +RcppExport SEXP _arrow_dataset___HivePartitioning__MakeFactory(){ +BEGIN_RCPP + return Rcpp::wrap(dataset___HivePartitioning__MakeFactory()); +END_RCPP +} +#else +RcppExport SEXP _arrow_dataset___HivePartitioning__MakeFactory(){ + Rf_error("Cannot call dataset___HivePartitioning__MakeFactory(). Please use arrow::install_arrow() to install required runtime libraries. "); +} +#endif + +// dataset.cpp +#if defined(ARROW_R_WITH_ARROW) +std::shared_ptr dataset___Dataset__create(const ds::SourceVector& sources, const std::shared_ptr& schm); +RcppExport SEXP _arrow_dataset___Dataset__create(SEXP sources_sexp, SEXP schm_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter::type sources(sources_sexp); + Rcpp::traits::input_parameter&>::type schm(schm_sexp); + return Rcpp::wrap(dataset___Dataset__create(sources, schm)); +END_RCPP } #else -RcppExport SEXP _arrow_dataset___HivePartitioning__MakeFactory() { - Rf_error( - "Cannot call dataset___HivePartitioning__MakeFactory(). Please use " - "arrow::install_arrow() to install required runtime libraries. "); +RcppExport SEXP _arrow_dataset___Dataset__create(SEXP sources_sexp, SEXP schm_sexp){ + Rf_error("Cannot call dataset___Dataset__create(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // dataset.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr dataset___Dataset__create( - const ds::SourceVector& sources, const std::shared_ptr& schm); -RcppExport SEXP _arrow_dataset___Dataset__create(SEXP sources_sexp, SEXP schm_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter::type sources(sources_sexp); - Rcpp::traits::input_parameter&>::type schm( - schm_sexp); - return Rcpp::wrap(dataset___Dataset__create(sources, schm)); - END_RCPP +std::shared_ptr dataset___Dataset__schema(const std::shared_ptr& ds); +RcppExport SEXP _arrow_dataset___Dataset__schema(SEXP ds_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type ds(ds_sexp); + return Rcpp::wrap(dataset___Dataset__schema(ds)); +END_RCPP } #else -RcppExport SEXP _arrow_dataset___Dataset__create(SEXP sources_sexp, SEXP schm_sexp) { - Rf_error( - "Cannot call dataset___Dataset__create(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_dataset___Dataset__schema(SEXP ds_sexp){ + Rf_error("Cannot call dataset___Dataset__schema(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // dataset.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr dataset___Dataset__schema( - const std::shared_ptr& ds); -RcppExport SEXP _arrow_dataset___Dataset__schema(SEXP ds_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type ds(ds_sexp); - return Rcpp::wrap(dataset___Dataset__schema(ds)); - END_RCPP +std::vector> dataset___Dataset__sources(const std::shared_ptr& ds); +RcppExport SEXP _arrow_dataset___Dataset__sources(SEXP ds_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type ds(ds_sexp); + return Rcpp::wrap(dataset___Dataset__sources(ds)); +END_RCPP } #else -RcppExport SEXP _arrow_dataset___Dataset__schema(SEXP ds_sexp) { - Rf_error( - "Cannot call dataset___Dataset__schema(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_dataset___Dataset__sources(SEXP ds_sexp){ + Rf_error("Cannot call dataset___Dataset__sources(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // dataset.cpp #if defined(ARROW_R_WITH_ARROW) -std::vector> dataset___Dataset__sources( - const std::shared_ptr& ds); -RcppExport SEXP _arrow_dataset___Dataset__sources(SEXP ds_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type ds(ds_sexp); - return Rcpp::wrap(dataset___Dataset__sources(ds)); - END_RCPP +std::shared_ptr dataset___Dataset__NewScan(const std::shared_ptr& ds); +RcppExport SEXP _arrow_dataset___Dataset__NewScan(SEXP ds_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type ds(ds_sexp); + return Rcpp::wrap(dataset___Dataset__NewScan(ds)); +END_RCPP } #else -RcppExport SEXP _arrow_dataset___Dataset__sources(SEXP ds_sexp) { - Rf_error( - "Cannot call dataset___Dataset__sources(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_dataset___Dataset__NewScan(SEXP ds_sexp){ + Rf_error("Cannot call dataset___Dataset__NewScan(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // dataset.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr dataset___Dataset__NewScan( - const std::shared_ptr& ds); -RcppExport SEXP _arrow_dataset___Dataset__NewScan(SEXP ds_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type ds(ds_sexp); - return Rcpp::wrap(dataset___Dataset__NewScan(ds)); - END_RCPP +void dataset___ScannerBuilder__Project(const std::shared_ptr& sb, const std::vector& cols); +RcppExport SEXP _arrow_dataset___ScannerBuilder__Project(SEXP sb_sexp, SEXP cols_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type sb(sb_sexp); + Rcpp::traits::input_parameter&>::type cols(cols_sexp); + dataset___ScannerBuilder__Project(sb, cols); + return R_NilValue; +END_RCPP } #else -RcppExport SEXP _arrow_dataset___Dataset__NewScan(SEXP ds_sexp) { - Rf_error( - "Cannot call dataset___Dataset__NewScan(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_dataset___ScannerBuilder__Project(SEXP sb_sexp, SEXP cols_sexp){ + Rf_error("Cannot call dataset___ScannerBuilder__Project(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // dataset.cpp #if defined(ARROW_R_WITH_ARROW) -void dataset___ScannerBuilder__Project(const std::shared_ptr& sb, - const std::vector& cols); -RcppExport SEXP _arrow_dataset___ScannerBuilder__Project(SEXP sb_sexp, SEXP cols_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type sb( - sb_sexp); - Rcpp::traits::input_parameter&>::type cols(cols_sexp); - dataset___ScannerBuilder__Project(sb, cols); - return R_NilValue; - END_RCPP +void dataset___ScannerBuilder__Filter(const std::shared_ptr& sb, const std::shared_ptr& expr); +RcppExport SEXP _arrow_dataset___ScannerBuilder__Filter(SEXP sb_sexp, SEXP expr_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type sb(sb_sexp); + Rcpp::traits::input_parameter&>::type expr(expr_sexp); + dataset___ScannerBuilder__Filter(sb, expr); + return R_NilValue; +END_RCPP } #else -RcppExport SEXP _arrow_dataset___ScannerBuilder__Project(SEXP sb_sexp, SEXP cols_sexp) { - Rf_error( - "Cannot call dataset___ScannerBuilder__Project(). Please use " - "arrow::install_arrow() to install required runtime libraries. "); +RcppExport SEXP _arrow_dataset___ScannerBuilder__Filter(SEXP sb_sexp, SEXP expr_sexp){ + Rf_error("Cannot call dataset___ScannerBuilder__Filter(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // dataset.cpp #if defined(ARROW_R_WITH_ARROW) -void dataset___ScannerBuilder__Filter(const std::shared_ptr& sb, - const std::shared_ptr& expr); -RcppExport SEXP _arrow_dataset___ScannerBuilder__Filter(SEXP sb_sexp, SEXP expr_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type sb( - sb_sexp); - Rcpp::traits::input_parameter&>::type expr( - expr_sexp); - dataset___ScannerBuilder__Filter(sb, expr); - return R_NilValue; - END_RCPP +void dataset___ScannerBuilder__UseThreads(const std::shared_ptr& sb, bool threads); +RcppExport SEXP _arrow_dataset___ScannerBuilder__UseThreads(SEXP sb_sexp, SEXP threads_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type sb(sb_sexp); + Rcpp::traits::input_parameter::type threads(threads_sexp); + dataset___ScannerBuilder__UseThreads(sb, threads); + return R_NilValue; +END_RCPP } #else -RcppExport SEXP _arrow_dataset___ScannerBuilder__Filter(SEXP sb_sexp, SEXP expr_sexp) { - Rf_error( - "Cannot call dataset___ScannerBuilder__Filter(). Please use arrow::install_arrow() " - "to install required runtime libraries. "); +RcppExport SEXP _arrow_dataset___ScannerBuilder__UseThreads(SEXP sb_sexp, SEXP threads_sexp){ + Rf_error("Cannot call dataset___ScannerBuilder__UseThreads(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // dataset.cpp #if defined(ARROW_R_WITH_ARROW) -void dataset___ScannerBuilder__UseThreads(const std::shared_ptr& sb, - bool threads); -RcppExport SEXP _arrow_dataset___ScannerBuilder__UseThreads(SEXP sb_sexp, - SEXP threads_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type sb( - sb_sexp); - Rcpp::traits::input_parameter::type threads(threads_sexp); - dataset___ScannerBuilder__UseThreads(sb, threads); - return R_NilValue; - END_RCPP +void dataset___ScannerBuilder__BatchSize(const std::shared_ptr& sb, int64_t batch_size); +RcppExport SEXP _arrow_dataset___ScannerBuilder__BatchSize(SEXP sb_sexp, SEXP batch_size_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type sb(sb_sexp); + Rcpp::traits::input_parameter::type batch_size(batch_size_sexp); + dataset___ScannerBuilder__BatchSize(sb, batch_size); + return R_NilValue; +END_RCPP } #else -RcppExport SEXP _arrow_dataset___ScannerBuilder__UseThreads(SEXP sb_sexp, - SEXP threads_sexp) { - Rf_error( - "Cannot call dataset___ScannerBuilder__UseThreads(). Please use " - "arrow::install_arrow() to install required runtime libraries. "); +RcppExport SEXP _arrow_dataset___ScannerBuilder__BatchSize(SEXP sb_sexp, SEXP batch_size_sexp){ + Rf_error("Cannot call dataset___ScannerBuilder__BatchSize(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // dataset.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr dataset___ScannerBuilder__schema( - const std::shared_ptr& sb); -RcppExport SEXP _arrow_dataset___ScannerBuilder__schema(SEXP sb_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type sb( - sb_sexp); - return Rcpp::wrap(dataset___ScannerBuilder__schema(sb)); - END_RCPP +std::shared_ptr dataset___ScannerBuilder__schema(const std::shared_ptr& sb); +RcppExport SEXP _arrow_dataset___ScannerBuilder__schema(SEXP sb_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type sb(sb_sexp); + return Rcpp::wrap(dataset___ScannerBuilder__schema(sb)); +END_RCPP } #else -RcppExport SEXP _arrow_dataset___ScannerBuilder__schema(SEXP sb_sexp) { - Rf_error( - "Cannot call dataset___ScannerBuilder__schema(). Please use arrow::install_arrow() " - "to install required runtime libraries. "); +RcppExport SEXP _arrow_dataset___ScannerBuilder__schema(SEXP sb_sexp){ + Rf_error("Cannot call dataset___ScannerBuilder__schema(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // dataset.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr dataset___ScannerBuilder__Finish( - const std::shared_ptr& sb); -RcppExport SEXP _arrow_dataset___ScannerBuilder__Finish(SEXP sb_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type sb( - sb_sexp); - return Rcpp::wrap(dataset___ScannerBuilder__Finish(sb)); - END_RCPP +std::shared_ptr dataset___ScannerBuilder__Finish(const std::shared_ptr& sb); +RcppExport SEXP _arrow_dataset___ScannerBuilder__Finish(SEXP sb_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type sb(sb_sexp); + return Rcpp::wrap(dataset___ScannerBuilder__Finish(sb)); +END_RCPP } #else -RcppExport SEXP _arrow_dataset___ScannerBuilder__Finish(SEXP sb_sexp) { - Rf_error( - "Cannot call dataset___ScannerBuilder__Finish(). Please use arrow::install_arrow() " - "to install required runtime libraries. "); +RcppExport SEXP _arrow_dataset___ScannerBuilder__Finish(SEXP sb_sexp){ + Rf_error("Cannot call dataset___ScannerBuilder__Finish(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // dataset.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr dataset___Scanner__ToTable( - const std::shared_ptr& scanner); -RcppExport SEXP _arrow_dataset___Scanner__ToTable(SEXP scanner_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type scanner( - scanner_sexp); - return Rcpp::wrap(dataset___Scanner__ToTable(scanner)); - END_RCPP +std::shared_ptr dataset___Scanner__ToTable(const std::shared_ptr& scanner); +RcppExport SEXP _arrow_dataset___Scanner__ToTable(SEXP scanner_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type scanner(scanner_sexp); + return Rcpp::wrap(dataset___Scanner__ToTable(scanner)); +END_RCPP } #else -RcppExport SEXP _arrow_dataset___Scanner__ToTable(SEXP scanner_sexp) { - Rf_error( - "Cannot call dataset___Scanner__ToTable(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_dataset___Scanner__ToTable(SEXP scanner_sexp){ + Rf_error("Cannot call dataset___Scanner__ToTable(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // datatype.cpp #if defined(ARROW_R_WITH_ARROW) bool shared_ptr_is_null(SEXP xp); -RcppExport SEXP _arrow_shared_ptr_is_null(SEXP xp_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter::type xp(xp_sexp); - return Rcpp::wrap(shared_ptr_is_null(xp)); - END_RCPP +RcppExport SEXP _arrow_shared_ptr_is_null(SEXP xp_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter::type xp(xp_sexp); + return Rcpp::wrap(shared_ptr_is_null(xp)); +END_RCPP } #else -RcppExport SEXP _arrow_shared_ptr_is_null(SEXP xp_sexp) { - Rf_error( - "Cannot call shared_ptr_is_null(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_shared_ptr_is_null(SEXP xp_sexp){ + Rf_error("Cannot call shared_ptr_is_null(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // datatype.cpp #if defined(ARROW_R_WITH_ARROW) bool unique_ptr_is_null(SEXP xp); -RcppExport SEXP _arrow_unique_ptr_is_null(SEXP xp_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter::type xp(xp_sexp); - return Rcpp::wrap(unique_ptr_is_null(xp)); - END_RCPP +RcppExport SEXP _arrow_unique_ptr_is_null(SEXP xp_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter::type xp(xp_sexp); + return Rcpp::wrap(unique_ptr_is_null(xp)); +END_RCPP } #else -RcppExport SEXP _arrow_unique_ptr_is_null(SEXP xp_sexp) { - Rf_error( - "Cannot call unique_ptr_is_null(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_unique_ptr_is_null(SEXP xp_sexp){ + Rf_error("Cannot call unique_ptr_is_null(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // datatype.cpp #if defined(ARROW_R_WITH_ARROW) std::shared_ptr Int8__initialize(); -RcppExport SEXP _arrow_Int8__initialize() { - BEGIN_RCPP - return Rcpp::wrap(Int8__initialize()); - END_RCPP +RcppExport SEXP _arrow_Int8__initialize(){ +BEGIN_RCPP + return Rcpp::wrap(Int8__initialize()); +END_RCPP } #else -RcppExport SEXP _arrow_Int8__initialize() { - Rf_error( - "Cannot call Int8__initialize(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_Int8__initialize(){ + Rf_error("Cannot call Int8__initialize(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // datatype.cpp #if defined(ARROW_R_WITH_ARROW) std::shared_ptr Int16__initialize(); -RcppExport SEXP _arrow_Int16__initialize() { - BEGIN_RCPP - return Rcpp::wrap(Int16__initialize()); - END_RCPP +RcppExport SEXP _arrow_Int16__initialize(){ +BEGIN_RCPP + return Rcpp::wrap(Int16__initialize()); +END_RCPP } #else -RcppExport SEXP _arrow_Int16__initialize() { - Rf_error( - "Cannot call Int16__initialize(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_Int16__initialize(){ + Rf_error("Cannot call Int16__initialize(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // datatype.cpp #if defined(ARROW_R_WITH_ARROW) std::shared_ptr Int32__initialize(); -RcppExport SEXP _arrow_Int32__initialize() { - BEGIN_RCPP - return Rcpp::wrap(Int32__initialize()); - END_RCPP +RcppExport SEXP _arrow_Int32__initialize(){ +BEGIN_RCPP + return Rcpp::wrap(Int32__initialize()); +END_RCPP } #else -RcppExport SEXP _arrow_Int32__initialize() { - Rf_error( - "Cannot call Int32__initialize(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_Int32__initialize(){ + Rf_error("Cannot call Int32__initialize(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // datatype.cpp #if defined(ARROW_R_WITH_ARROW) std::shared_ptr Int64__initialize(); -RcppExport SEXP _arrow_Int64__initialize() { - BEGIN_RCPP - return Rcpp::wrap(Int64__initialize()); - END_RCPP +RcppExport SEXP _arrow_Int64__initialize(){ +BEGIN_RCPP + return Rcpp::wrap(Int64__initialize()); +END_RCPP } #else -RcppExport SEXP _arrow_Int64__initialize() { - Rf_error( - "Cannot call Int64__initialize(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_Int64__initialize(){ + Rf_error("Cannot call Int64__initialize(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // datatype.cpp #if defined(ARROW_R_WITH_ARROW) std::shared_ptr UInt8__initialize(); -RcppExport SEXP _arrow_UInt8__initialize() { - BEGIN_RCPP - return Rcpp::wrap(UInt8__initialize()); - END_RCPP +RcppExport SEXP _arrow_UInt8__initialize(){ +BEGIN_RCPP + return Rcpp::wrap(UInt8__initialize()); +END_RCPP } #else -RcppExport SEXP _arrow_UInt8__initialize() { - Rf_error( - "Cannot call UInt8__initialize(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_UInt8__initialize(){ + Rf_error("Cannot call UInt8__initialize(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // datatype.cpp #if defined(ARROW_R_WITH_ARROW) std::shared_ptr UInt16__initialize(); -RcppExport SEXP _arrow_UInt16__initialize() { - BEGIN_RCPP - return Rcpp::wrap(UInt16__initialize()); - END_RCPP +RcppExport SEXP _arrow_UInt16__initialize(){ +BEGIN_RCPP + return Rcpp::wrap(UInt16__initialize()); +END_RCPP } #else -RcppExport SEXP _arrow_UInt16__initialize() { - Rf_error( - "Cannot call UInt16__initialize(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_UInt16__initialize(){ + Rf_error("Cannot call UInt16__initialize(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // datatype.cpp #if defined(ARROW_R_WITH_ARROW) std::shared_ptr UInt32__initialize(); -RcppExport SEXP _arrow_UInt32__initialize() { - BEGIN_RCPP - return Rcpp::wrap(UInt32__initialize()); - END_RCPP +RcppExport SEXP _arrow_UInt32__initialize(){ +BEGIN_RCPP + return Rcpp::wrap(UInt32__initialize()); +END_RCPP } #else -RcppExport SEXP _arrow_UInt32__initialize() { - Rf_error( - "Cannot call UInt32__initialize(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_UInt32__initialize(){ + Rf_error("Cannot call UInt32__initialize(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // datatype.cpp #if defined(ARROW_R_WITH_ARROW) std::shared_ptr UInt64__initialize(); -RcppExport SEXP _arrow_UInt64__initialize() { - BEGIN_RCPP - return Rcpp::wrap(UInt64__initialize()); - END_RCPP +RcppExport SEXP _arrow_UInt64__initialize(){ +BEGIN_RCPP + return Rcpp::wrap(UInt64__initialize()); +END_RCPP } #else -RcppExport SEXP _arrow_UInt64__initialize() { - Rf_error( - "Cannot call UInt64__initialize(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_UInt64__initialize(){ + Rf_error("Cannot call UInt64__initialize(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // datatype.cpp #if defined(ARROW_R_WITH_ARROW) std::shared_ptr Float16__initialize(); -RcppExport SEXP _arrow_Float16__initialize() { - BEGIN_RCPP - return Rcpp::wrap(Float16__initialize()); - END_RCPP +RcppExport SEXP _arrow_Float16__initialize(){ +BEGIN_RCPP + return Rcpp::wrap(Float16__initialize()); +END_RCPP } #else -RcppExport SEXP _arrow_Float16__initialize() { - Rf_error( - "Cannot call Float16__initialize(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_Float16__initialize(){ + Rf_error("Cannot call Float16__initialize(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // datatype.cpp #if defined(ARROW_R_WITH_ARROW) std::shared_ptr Float32__initialize(); -RcppExport SEXP _arrow_Float32__initialize() { - BEGIN_RCPP - return Rcpp::wrap(Float32__initialize()); - END_RCPP +RcppExport SEXP _arrow_Float32__initialize(){ +BEGIN_RCPP + return Rcpp::wrap(Float32__initialize()); +END_RCPP } #else -RcppExport SEXP _arrow_Float32__initialize() { - Rf_error( - "Cannot call Float32__initialize(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_Float32__initialize(){ + Rf_error("Cannot call Float32__initialize(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // datatype.cpp #if defined(ARROW_R_WITH_ARROW) std::shared_ptr Float64__initialize(); -RcppExport SEXP _arrow_Float64__initialize() { - BEGIN_RCPP - return Rcpp::wrap(Float64__initialize()); - END_RCPP +RcppExport SEXP _arrow_Float64__initialize(){ +BEGIN_RCPP + return Rcpp::wrap(Float64__initialize()); +END_RCPP } #else -RcppExport SEXP _arrow_Float64__initialize() { - Rf_error( - "Cannot call Float64__initialize(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_Float64__initialize(){ + Rf_error("Cannot call Float64__initialize(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // datatype.cpp #if defined(ARROW_R_WITH_ARROW) std::shared_ptr Boolean__initialize(); -RcppExport SEXP _arrow_Boolean__initialize() { - BEGIN_RCPP - return Rcpp::wrap(Boolean__initialize()); - END_RCPP +RcppExport SEXP _arrow_Boolean__initialize(){ +BEGIN_RCPP + return Rcpp::wrap(Boolean__initialize()); +END_RCPP } #else -RcppExport SEXP _arrow_Boolean__initialize() { - Rf_error( - "Cannot call Boolean__initialize(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_Boolean__initialize(){ + Rf_error("Cannot call Boolean__initialize(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // datatype.cpp #if defined(ARROW_R_WITH_ARROW) std::shared_ptr Utf8__initialize(); -RcppExport SEXP _arrow_Utf8__initialize() { - BEGIN_RCPP - return Rcpp::wrap(Utf8__initialize()); - END_RCPP +RcppExport SEXP _arrow_Utf8__initialize(){ +BEGIN_RCPP + return Rcpp::wrap(Utf8__initialize()); +END_RCPP } #else -RcppExport SEXP _arrow_Utf8__initialize() { - Rf_error( - "Cannot call Utf8__initialize(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_Utf8__initialize(){ + Rf_error("Cannot call Utf8__initialize(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // datatype.cpp #if defined(ARROW_R_WITH_ARROW) std::shared_ptr Date32__initialize(); -RcppExport SEXP _arrow_Date32__initialize() { - BEGIN_RCPP - return Rcpp::wrap(Date32__initialize()); - END_RCPP +RcppExport SEXP _arrow_Date32__initialize(){ +BEGIN_RCPP + return Rcpp::wrap(Date32__initialize()); +END_RCPP } #else -RcppExport SEXP _arrow_Date32__initialize() { - Rf_error( - "Cannot call Date32__initialize(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_Date32__initialize(){ + Rf_error("Cannot call Date32__initialize(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // datatype.cpp #if defined(ARROW_R_WITH_ARROW) std::shared_ptr Date64__initialize(); -RcppExport SEXP _arrow_Date64__initialize() { - BEGIN_RCPP - return Rcpp::wrap(Date64__initialize()); - END_RCPP +RcppExport SEXP _arrow_Date64__initialize(){ +BEGIN_RCPP + return Rcpp::wrap(Date64__initialize()); +END_RCPP } #else -RcppExport SEXP _arrow_Date64__initialize() { - Rf_error( - "Cannot call Date64__initialize(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_Date64__initialize(){ + Rf_error("Cannot call Date64__initialize(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // datatype.cpp #if defined(ARROW_R_WITH_ARROW) std::shared_ptr Null__initialize(); -RcppExport SEXP _arrow_Null__initialize() { - BEGIN_RCPP - return Rcpp::wrap(Null__initialize()); - END_RCPP +RcppExport SEXP _arrow_Null__initialize(){ +BEGIN_RCPP + return Rcpp::wrap(Null__initialize()); +END_RCPP } #else -RcppExport SEXP _arrow_Null__initialize() { - Rf_error( - "Cannot call Null__initialize(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_Null__initialize(){ + Rf_error("Cannot call Null__initialize(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // datatype.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr Decimal128Type__initialize(int32_t precision, - int32_t scale); -RcppExport SEXP _arrow_Decimal128Type__initialize(SEXP precision_sexp, SEXP scale_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter::type precision(precision_sexp); - Rcpp::traits::input_parameter::type scale(scale_sexp); - return Rcpp::wrap(Decimal128Type__initialize(precision, scale)); - END_RCPP +std::shared_ptr Decimal128Type__initialize(int32_t precision, int32_t scale); +RcppExport SEXP _arrow_Decimal128Type__initialize(SEXP precision_sexp, SEXP scale_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter::type precision(precision_sexp); + Rcpp::traits::input_parameter::type scale(scale_sexp); + return Rcpp::wrap(Decimal128Type__initialize(precision, scale)); +END_RCPP } #else -RcppExport SEXP _arrow_Decimal128Type__initialize(SEXP precision_sexp, SEXP scale_sexp) { - Rf_error( - "Cannot call Decimal128Type__initialize(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_Decimal128Type__initialize(SEXP precision_sexp, SEXP scale_sexp){ + Rf_error("Cannot call Decimal128Type__initialize(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // datatype.cpp #if defined(ARROW_R_WITH_ARROW) std::shared_ptr FixedSizeBinary__initialize(int32_t byte_width); -RcppExport SEXP _arrow_FixedSizeBinary__initialize(SEXP byte_width_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter::type byte_width(byte_width_sexp); - return Rcpp::wrap(FixedSizeBinary__initialize(byte_width)); - END_RCPP +RcppExport SEXP _arrow_FixedSizeBinary__initialize(SEXP byte_width_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter::type byte_width(byte_width_sexp); + return Rcpp::wrap(FixedSizeBinary__initialize(byte_width)); +END_RCPP } #else -RcppExport SEXP _arrow_FixedSizeBinary__initialize(SEXP byte_width_sexp) { - Rf_error( - "Cannot call FixedSizeBinary__initialize(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_FixedSizeBinary__initialize(SEXP byte_width_sexp){ + Rf_error("Cannot call FixedSizeBinary__initialize(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // datatype.cpp #if defined(ARROW_R_WITH_ARROW) std::shared_ptr Timestamp__initialize1(arrow::TimeUnit::type unit); -RcppExport SEXP _arrow_Timestamp__initialize1(SEXP unit_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter::type unit(unit_sexp); - return Rcpp::wrap(Timestamp__initialize1(unit)); - END_RCPP +RcppExport SEXP _arrow_Timestamp__initialize1(SEXP unit_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter::type unit(unit_sexp); + return Rcpp::wrap(Timestamp__initialize1(unit)); +END_RCPP } #else -RcppExport SEXP _arrow_Timestamp__initialize1(SEXP unit_sexp) { - Rf_error( - "Cannot call Timestamp__initialize1(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_Timestamp__initialize1(SEXP unit_sexp){ + Rf_error("Cannot call Timestamp__initialize1(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // datatype.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr Timestamp__initialize2(arrow::TimeUnit::type unit, - const std::string& timezone); -RcppExport SEXP _arrow_Timestamp__initialize2(SEXP unit_sexp, SEXP timezone_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter::type unit(unit_sexp); - Rcpp::traits::input_parameter::type timezone(timezone_sexp); - return Rcpp::wrap(Timestamp__initialize2(unit, timezone)); - END_RCPP +std::shared_ptr Timestamp__initialize2(arrow::TimeUnit::type unit, const std::string& timezone); +RcppExport SEXP _arrow_Timestamp__initialize2(SEXP unit_sexp, SEXP timezone_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter::type unit(unit_sexp); + Rcpp::traits::input_parameter::type timezone(timezone_sexp); + return Rcpp::wrap(Timestamp__initialize2(unit, timezone)); +END_RCPP } #else -RcppExport SEXP _arrow_Timestamp__initialize2(SEXP unit_sexp, SEXP timezone_sexp) { - Rf_error( - "Cannot call Timestamp__initialize2(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_Timestamp__initialize2(SEXP unit_sexp, SEXP timezone_sexp){ + Rf_error("Cannot call Timestamp__initialize2(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // datatype.cpp #if defined(ARROW_R_WITH_ARROW) std::shared_ptr Time32__initialize(arrow::TimeUnit::type unit); -RcppExport SEXP _arrow_Time32__initialize(SEXP unit_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter::type unit(unit_sexp); - return Rcpp::wrap(Time32__initialize(unit)); - END_RCPP +RcppExport SEXP _arrow_Time32__initialize(SEXP unit_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter::type unit(unit_sexp); + return Rcpp::wrap(Time32__initialize(unit)); +END_RCPP } #else -RcppExport SEXP _arrow_Time32__initialize(SEXP unit_sexp) { - Rf_error( - "Cannot call Time32__initialize(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_Time32__initialize(SEXP unit_sexp){ + Rf_error("Cannot call Time32__initialize(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // datatype.cpp #if defined(ARROW_R_WITH_ARROW) std::shared_ptr Time64__initialize(arrow::TimeUnit::type unit); -RcppExport SEXP _arrow_Time64__initialize(SEXP unit_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter::type unit(unit_sexp); - return Rcpp::wrap(Time64__initialize(unit)); - END_RCPP +RcppExport SEXP _arrow_Time64__initialize(SEXP unit_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter::type unit(unit_sexp); + return Rcpp::wrap(Time64__initialize(unit)); +END_RCPP } #else -RcppExport SEXP _arrow_Time64__initialize(SEXP unit_sexp) { - Rf_error( - "Cannot call Time64__initialize(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_Time64__initialize(SEXP unit_sexp){ + Rf_error("Cannot call Time64__initialize(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // datatype.cpp #if defined(ARROW_R_WITH_ARROW) SEXP list__(SEXP x); -RcppExport SEXP _arrow_list__(SEXP x_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter::type x(x_sexp); - return Rcpp::wrap(list__(x)); - END_RCPP +RcppExport SEXP _arrow_list__(SEXP x_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter::type x(x_sexp); + return Rcpp::wrap(list__(x)); +END_RCPP } #else -RcppExport SEXP _arrow_list__(SEXP x_sexp) { - Rf_error( - "Cannot call list__(). Please use arrow::install_arrow() to install required " - "runtime libraries. "); +RcppExport SEXP _arrow_list__(SEXP x_sexp){ + Rf_error("Cannot call list__(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // datatype.cpp #if defined(ARROW_R_WITH_ARROW) std::shared_ptr struct_(List fields); -RcppExport SEXP _arrow_struct_(SEXP fields_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter::type fields(fields_sexp); - return Rcpp::wrap(struct_(fields)); - END_RCPP +RcppExport SEXP _arrow_struct_(SEXP fields_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter::type fields(fields_sexp); + return Rcpp::wrap(struct_(fields)); +END_RCPP } #else -RcppExport SEXP _arrow_struct_(SEXP fields_sexp) { - Rf_error( - "Cannot call struct_(). Please use arrow::install_arrow() to install required " - "runtime libraries. "); +RcppExport SEXP _arrow_struct_(SEXP fields_sexp){ + Rf_error("Cannot call struct_(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // datatype.cpp #if defined(ARROW_R_WITH_ARROW) std::string DataType__ToString(const std::shared_ptr& type); -RcppExport SEXP _arrow_DataType__ToString(SEXP type_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type type( - type_sexp); - return Rcpp::wrap(DataType__ToString(type)); - END_RCPP +RcppExport SEXP _arrow_DataType__ToString(SEXP type_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type type(type_sexp); + return Rcpp::wrap(DataType__ToString(type)); +END_RCPP } #else -RcppExport SEXP _arrow_DataType__ToString(SEXP type_sexp) { - Rf_error( - "Cannot call DataType__ToString(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_DataType__ToString(SEXP type_sexp){ + Rf_error("Cannot call DataType__ToString(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // datatype.cpp #if defined(ARROW_R_WITH_ARROW) std::string DataType__name(const std::shared_ptr& type); -RcppExport SEXP _arrow_DataType__name(SEXP type_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type type( - type_sexp); - return Rcpp::wrap(DataType__name(type)); - END_RCPP +RcppExport SEXP _arrow_DataType__name(SEXP type_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type type(type_sexp); + return Rcpp::wrap(DataType__name(type)); +END_RCPP } #else -RcppExport SEXP _arrow_DataType__name(SEXP type_sexp) { - Rf_error( - "Cannot call DataType__name(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_DataType__name(SEXP type_sexp){ + Rf_error("Cannot call DataType__name(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // datatype.cpp #if defined(ARROW_R_WITH_ARROW) -bool DataType__Equals(const std::shared_ptr& lhs, - const std::shared_ptr& rhs); -RcppExport SEXP _arrow_DataType__Equals(SEXP lhs_sexp, SEXP rhs_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type lhs( - lhs_sexp); - Rcpp::traits::input_parameter&>::type rhs( - rhs_sexp); - return Rcpp::wrap(DataType__Equals(lhs, rhs)); - END_RCPP +bool DataType__Equals(const std::shared_ptr& lhs, const std::shared_ptr& rhs); +RcppExport SEXP _arrow_DataType__Equals(SEXP lhs_sexp, SEXP rhs_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type lhs(lhs_sexp); + Rcpp::traits::input_parameter&>::type rhs(rhs_sexp); + return Rcpp::wrap(DataType__Equals(lhs, rhs)); +END_RCPP } #else -RcppExport SEXP _arrow_DataType__Equals(SEXP lhs_sexp, SEXP rhs_sexp) { - Rf_error( - "Cannot call DataType__Equals(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_DataType__Equals(SEXP lhs_sexp, SEXP rhs_sexp){ + Rf_error("Cannot call DataType__Equals(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // datatype.cpp #if defined(ARROW_R_WITH_ARROW) int DataType__num_children(const std::shared_ptr& type); -RcppExport SEXP _arrow_DataType__num_children(SEXP type_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type type( - type_sexp); - return Rcpp::wrap(DataType__num_children(type)); - END_RCPP +RcppExport SEXP _arrow_DataType__num_children(SEXP type_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type type(type_sexp); + return Rcpp::wrap(DataType__num_children(type)); +END_RCPP } #else -RcppExport SEXP _arrow_DataType__num_children(SEXP type_sexp) { - Rf_error( - "Cannot call DataType__num_children(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_DataType__num_children(SEXP type_sexp){ + Rf_error("Cannot call DataType__num_children(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // datatype.cpp #if defined(ARROW_R_WITH_ARROW) List DataType__children_pointer(const std::shared_ptr& type); -RcppExport SEXP _arrow_DataType__children_pointer(SEXP type_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type type( - type_sexp); - return Rcpp::wrap(DataType__children_pointer(type)); - END_RCPP +RcppExport SEXP _arrow_DataType__children_pointer(SEXP type_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type type(type_sexp); + return Rcpp::wrap(DataType__children_pointer(type)); +END_RCPP } #else -RcppExport SEXP _arrow_DataType__children_pointer(SEXP type_sexp) { - Rf_error( - "Cannot call DataType__children_pointer(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_DataType__children_pointer(SEXP type_sexp){ + Rf_error("Cannot call DataType__children_pointer(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // datatype.cpp #if defined(ARROW_R_WITH_ARROW) arrow::Type::type DataType__id(const std::shared_ptr& type); -RcppExport SEXP _arrow_DataType__id(SEXP type_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type type( - type_sexp); - return Rcpp::wrap(DataType__id(type)); - END_RCPP +RcppExport SEXP _arrow_DataType__id(SEXP type_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type type(type_sexp); + return Rcpp::wrap(DataType__id(type)); +END_RCPP } #else -RcppExport SEXP _arrow_DataType__id(SEXP type_sexp) { - Rf_error( - "Cannot call DataType__id(). Please use arrow::install_arrow() to install required " - "runtime libraries. "); +RcppExport SEXP _arrow_DataType__id(SEXP type_sexp){ + Rf_error("Cannot call DataType__id(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // datatype.cpp #if defined(ARROW_R_WITH_ARROW) std::string ListType__ToString(const std::shared_ptr& type); -RcppExport SEXP _arrow_ListType__ToString(SEXP type_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type type( - type_sexp); - return Rcpp::wrap(ListType__ToString(type)); - END_RCPP +RcppExport SEXP _arrow_ListType__ToString(SEXP type_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type type(type_sexp); + return Rcpp::wrap(ListType__ToString(type)); +END_RCPP } #else -RcppExport SEXP _arrow_ListType__ToString(SEXP type_sexp) { - Rf_error( - "Cannot call ListType__ToString(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_ListType__ToString(SEXP type_sexp){ + Rf_error("Cannot call ListType__ToString(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // datatype.cpp #if defined(ARROW_R_WITH_ARROW) int FixedWidthType__bit_width(const std::shared_ptr& type); -RcppExport SEXP _arrow_FixedWidthType__bit_width(SEXP type_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type type( - type_sexp); - return Rcpp::wrap(FixedWidthType__bit_width(type)); - END_RCPP +RcppExport SEXP _arrow_FixedWidthType__bit_width(SEXP type_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type type(type_sexp); + return Rcpp::wrap(FixedWidthType__bit_width(type)); +END_RCPP } #else -RcppExport SEXP _arrow_FixedWidthType__bit_width(SEXP type_sexp) { - Rf_error( - "Cannot call FixedWidthType__bit_width(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_FixedWidthType__bit_width(SEXP type_sexp){ + Rf_error("Cannot call FixedWidthType__bit_width(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // datatype.cpp #if defined(ARROW_R_WITH_ARROW) arrow::DateUnit DateType__unit(const std::shared_ptr& type); -RcppExport SEXP _arrow_DateType__unit(SEXP type_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type type( - type_sexp); - return Rcpp::wrap(DateType__unit(type)); - END_RCPP +RcppExport SEXP _arrow_DateType__unit(SEXP type_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type type(type_sexp); + return Rcpp::wrap(DateType__unit(type)); +END_RCPP } #else -RcppExport SEXP _arrow_DateType__unit(SEXP type_sexp) { - Rf_error( - "Cannot call DateType__unit(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_DateType__unit(SEXP type_sexp){ + Rf_error("Cannot call DateType__unit(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // datatype.cpp #if defined(ARROW_R_WITH_ARROW) arrow::TimeUnit::type TimeType__unit(const std::shared_ptr& type); -RcppExport SEXP _arrow_TimeType__unit(SEXP type_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type type( - type_sexp); - return Rcpp::wrap(TimeType__unit(type)); - END_RCPP +RcppExport SEXP _arrow_TimeType__unit(SEXP type_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type type(type_sexp); + return Rcpp::wrap(TimeType__unit(type)); +END_RCPP } #else -RcppExport SEXP _arrow_TimeType__unit(SEXP type_sexp) { - Rf_error( - "Cannot call TimeType__unit(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_TimeType__unit(SEXP type_sexp){ + Rf_error("Cannot call TimeType__unit(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // datatype.cpp #if defined(ARROW_R_WITH_ARROW) int32_t DecimalType__precision(const std::shared_ptr& type); -RcppExport SEXP _arrow_DecimalType__precision(SEXP type_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type type( - type_sexp); - return Rcpp::wrap(DecimalType__precision(type)); - END_RCPP +RcppExport SEXP _arrow_DecimalType__precision(SEXP type_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type type(type_sexp); + return Rcpp::wrap(DecimalType__precision(type)); +END_RCPP } #else -RcppExport SEXP _arrow_DecimalType__precision(SEXP type_sexp) { - Rf_error( - "Cannot call DecimalType__precision(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_DecimalType__precision(SEXP type_sexp){ + Rf_error("Cannot call DecimalType__precision(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // datatype.cpp #if defined(ARROW_R_WITH_ARROW) int32_t DecimalType__scale(const std::shared_ptr& type); -RcppExport SEXP _arrow_DecimalType__scale(SEXP type_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type type( - type_sexp); - return Rcpp::wrap(DecimalType__scale(type)); - END_RCPP +RcppExport SEXP _arrow_DecimalType__scale(SEXP type_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type type(type_sexp); + return Rcpp::wrap(DecimalType__scale(type)); +END_RCPP } #else -RcppExport SEXP _arrow_DecimalType__scale(SEXP type_sexp) { - Rf_error( - "Cannot call DecimalType__scale(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_DecimalType__scale(SEXP type_sexp){ + Rf_error("Cannot call DecimalType__scale(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // datatype.cpp #if defined(ARROW_R_WITH_ARROW) std::string TimestampType__timezone(const std::shared_ptr& type); -RcppExport SEXP _arrow_TimestampType__timezone(SEXP type_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type type( - type_sexp); - return Rcpp::wrap(TimestampType__timezone(type)); - END_RCPP +RcppExport SEXP _arrow_TimestampType__timezone(SEXP type_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type type(type_sexp); + return Rcpp::wrap(TimestampType__timezone(type)); +END_RCPP } #else -RcppExport SEXP _arrow_TimestampType__timezone(SEXP type_sexp) { - Rf_error( - "Cannot call TimestampType__timezone(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_TimestampType__timezone(SEXP type_sexp){ + Rf_error("Cannot call TimestampType__timezone(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // datatype.cpp #if defined(ARROW_R_WITH_ARROW) -arrow::TimeUnit::type TimestampType__unit( - const std::shared_ptr& type); -RcppExport SEXP _arrow_TimestampType__unit(SEXP type_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type type( - type_sexp); - return Rcpp::wrap(TimestampType__unit(type)); - END_RCPP +arrow::TimeUnit::type TimestampType__unit(const std::shared_ptr& type); +RcppExport SEXP _arrow_TimestampType__unit(SEXP type_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type type(type_sexp); + return Rcpp::wrap(TimestampType__unit(type)); +END_RCPP } #else -RcppExport SEXP _arrow_TimestampType__unit(SEXP type_sexp) { - Rf_error( - "Cannot call TimestampType__unit(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_TimestampType__unit(SEXP type_sexp){ + Rf_error("Cannot call TimestampType__unit(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // datatype.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr DictionaryType__initialize( - const std::shared_ptr& index_type, - const std::shared_ptr& value_type, bool ordered); -RcppExport SEXP _arrow_DictionaryType__initialize(SEXP index_type_sexp, - SEXP value_type_sexp, - SEXP ordered_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type index_type( - index_type_sexp); - Rcpp::traits::input_parameter&>::type value_type( - value_type_sexp); - Rcpp::traits::input_parameter::type ordered(ordered_sexp); - return Rcpp::wrap(DictionaryType__initialize(index_type, value_type, ordered)); - END_RCPP +std::shared_ptr DictionaryType__initialize(const std::shared_ptr& index_type, const std::shared_ptr& value_type, bool ordered); +RcppExport SEXP _arrow_DictionaryType__initialize(SEXP index_type_sexp, SEXP value_type_sexp, SEXP ordered_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type index_type(index_type_sexp); + Rcpp::traits::input_parameter&>::type value_type(value_type_sexp); + Rcpp::traits::input_parameter::type ordered(ordered_sexp); + return Rcpp::wrap(DictionaryType__initialize(index_type, value_type, ordered)); +END_RCPP } #else -RcppExport SEXP _arrow_DictionaryType__initialize(SEXP index_type_sexp, - SEXP value_type_sexp, - SEXP ordered_sexp) { - Rf_error( - "Cannot call DictionaryType__initialize(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_DictionaryType__initialize(SEXP index_type_sexp, SEXP value_type_sexp, SEXP ordered_sexp){ + Rf_error("Cannot call DictionaryType__initialize(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // datatype.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr DictionaryType__index_type( - const std::shared_ptr& type); -RcppExport SEXP _arrow_DictionaryType__index_type(SEXP type_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type type( - type_sexp); - return Rcpp::wrap(DictionaryType__index_type(type)); - END_RCPP +std::shared_ptr DictionaryType__index_type(const std::shared_ptr& type); +RcppExport SEXP _arrow_DictionaryType__index_type(SEXP type_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type type(type_sexp); + return Rcpp::wrap(DictionaryType__index_type(type)); +END_RCPP } #else -RcppExport SEXP _arrow_DictionaryType__index_type(SEXP type_sexp) { - Rf_error( - "Cannot call DictionaryType__index_type(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_DictionaryType__index_type(SEXP type_sexp){ + Rf_error("Cannot call DictionaryType__index_type(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // datatype.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr DictionaryType__value_type( - const std::shared_ptr& type); -RcppExport SEXP _arrow_DictionaryType__value_type(SEXP type_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type type( - type_sexp); - return Rcpp::wrap(DictionaryType__value_type(type)); - END_RCPP +std::shared_ptr DictionaryType__value_type(const std::shared_ptr& type); +RcppExport SEXP _arrow_DictionaryType__value_type(SEXP type_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type type(type_sexp); + return Rcpp::wrap(DictionaryType__value_type(type)); +END_RCPP } #else -RcppExport SEXP _arrow_DictionaryType__value_type(SEXP type_sexp) { - Rf_error( - "Cannot call DictionaryType__value_type(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_DictionaryType__value_type(SEXP type_sexp){ + Rf_error("Cannot call DictionaryType__value_type(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // datatype.cpp #if defined(ARROW_R_WITH_ARROW) std::string DictionaryType__name(const std::shared_ptr& type); -RcppExport SEXP _arrow_DictionaryType__name(SEXP type_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type type( - type_sexp); - return Rcpp::wrap(DictionaryType__name(type)); - END_RCPP +RcppExport SEXP _arrow_DictionaryType__name(SEXP type_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type type(type_sexp); + return Rcpp::wrap(DictionaryType__name(type)); +END_RCPP } #else -RcppExport SEXP _arrow_DictionaryType__name(SEXP type_sexp) { - Rf_error( - "Cannot call DictionaryType__name(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_DictionaryType__name(SEXP type_sexp){ + Rf_error("Cannot call DictionaryType__name(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // datatype.cpp #if defined(ARROW_R_WITH_ARROW) bool DictionaryType__ordered(const std::shared_ptr& type); -RcppExport SEXP _arrow_DictionaryType__ordered(SEXP type_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type type( - type_sexp); - return Rcpp::wrap(DictionaryType__ordered(type)); - END_RCPP +RcppExport SEXP _arrow_DictionaryType__ordered(SEXP type_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type type(type_sexp); + return Rcpp::wrap(DictionaryType__ordered(type)); +END_RCPP } #else -RcppExport SEXP _arrow_DictionaryType__ordered(SEXP type_sexp) { - Rf_error( - "Cannot call DictionaryType__ordered(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_DictionaryType__ordered(SEXP type_sexp){ + Rf_error("Cannot call DictionaryType__ordered(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // datatype.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr StructType__GetFieldByName( - const std::shared_ptr& type, const std::string& name); -RcppExport SEXP _arrow_StructType__GetFieldByName(SEXP type_sexp, SEXP name_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type type( - type_sexp); - Rcpp::traits::input_parameter::type name(name_sexp); - return Rcpp::wrap(StructType__GetFieldByName(type, name)); - END_RCPP +std::shared_ptr StructType__GetFieldByName(const std::shared_ptr& type, const std::string& name); +RcppExport SEXP _arrow_StructType__GetFieldByName(SEXP type_sexp, SEXP name_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type type(type_sexp); + Rcpp::traits::input_parameter::type name(name_sexp); + return Rcpp::wrap(StructType__GetFieldByName(type, name)); +END_RCPP } #else -RcppExport SEXP _arrow_StructType__GetFieldByName(SEXP type_sexp, SEXP name_sexp) { - Rf_error( - "Cannot call StructType__GetFieldByName(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_StructType__GetFieldByName(SEXP type_sexp, SEXP name_sexp){ + Rf_error("Cannot call StructType__GetFieldByName(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // datatype.cpp #if defined(ARROW_R_WITH_ARROW) -int StructType__GetFieldIndex(const std::shared_ptr& type, - const std::string& name); -RcppExport SEXP _arrow_StructType__GetFieldIndex(SEXP type_sexp, SEXP name_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type type( - type_sexp); - Rcpp::traits::input_parameter::type name(name_sexp); - return Rcpp::wrap(StructType__GetFieldIndex(type, name)); - END_RCPP +int StructType__GetFieldIndex(const std::shared_ptr& type, const std::string& name); +RcppExport SEXP _arrow_StructType__GetFieldIndex(SEXP type_sexp, SEXP name_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type type(type_sexp); + Rcpp::traits::input_parameter::type name(name_sexp); + return Rcpp::wrap(StructType__GetFieldIndex(type, name)); +END_RCPP } #else -RcppExport SEXP _arrow_StructType__GetFieldIndex(SEXP type_sexp, SEXP name_sexp) { - Rf_error( - "Cannot call StructType__GetFieldIndex(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_StructType__GetFieldIndex(SEXP type_sexp, SEXP name_sexp){ + Rf_error("Cannot call StructType__GetFieldIndex(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // datatype.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr ListType__value_field( - const std::shared_ptr& type); -RcppExport SEXP _arrow_ListType__value_field(SEXP type_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type type( - type_sexp); - return Rcpp::wrap(ListType__value_field(type)); - END_RCPP +std::shared_ptr ListType__value_field(const std::shared_ptr& type); +RcppExport SEXP _arrow_ListType__value_field(SEXP type_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type type(type_sexp); + return Rcpp::wrap(ListType__value_field(type)); +END_RCPP } #else -RcppExport SEXP _arrow_ListType__value_field(SEXP type_sexp) { - Rf_error( - "Cannot call ListType__value_field(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_ListType__value_field(SEXP type_sexp){ + Rf_error("Cannot call ListType__value_field(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // datatype.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr ListType__value_type( - const std::shared_ptr& type); -RcppExport SEXP _arrow_ListType__value_type(SEXP type_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type type( - type_sexp); - return Rcpp::wrap(ListType__value_type(type)); - END_RCPP +std::shared_ptr ListType__value_type(const std::shared_ptr& type); +RcppExport SEXP _arrow_ListType__value_type(SEXP type_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type type(type_sexp); + return Rcpp::wrap(ListType__value_type(type)); +END_RCPP } #else -RcppExport SEXP _arrow_ListType__value_type(SEXP type_sexp) { - Rf_error( - "Cannot call ListType__value_type(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_ListType__value_type(SEXP type_sexp){ + Rf_error("Cannot call ListType__value_type(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // expression.cpp #if defined(ARROW_R_WITH_ARROW) std::shared_ptr dataset___expr__field_ref(std::string name); -RcppExport SEXP _arrow_dataset___expr__field_ref(SEXP name_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter::type name(name_sexp); - return Rcpp::wrap(dataset___expr__field_ref(name)); - END_RCPP +RcppExport SEXP _arrow_dataset___expr__field_ref(SEXP name_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter::type name(name_sexp); + return Rcpp::wrap(dataset___expr__field_ref(name)); +END_RCPP } #else -RcppExport SEXP _arrow_dataset___expr__field_ref(SEXP name_sexp) { - Rf_error( - "Cannot call dataset___expr__field_ref(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_dataset___expr__field_ref(SEXP name_sexp){ + Rf_error("Cannot call dataset___expr__field_ref(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // expression.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr dataset___expr__equal( - const std::shared_ptr& lhs, - const std::shared_ptr& rhs); -RcppExport SEXP _arrow_dataset___expr__equal(SEXP lhs_sexp, SEXP rhs_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type lhs( - lhs_sexp); - Rcpp::traits::input_parameter&>::type rhs( - rhs_sexp); - return Rcpp::wrap(dataset___expr__equal(lhs, rhs)); - END_RCPP +std::shared_ptr dataset___expr__equal(const std::shared_ptr& lhs, const std::shared_ptr& rhs); +RcppExport SEXP _arrow_dataset___expr__equal(SEXP lhs_sexp, SEXP rhs_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type lhs(lhs_sexp); + Rcpp::traits::input_parameter&>::type rhs(rhs_sexp); + return Rcpp::wrap(dataset___expr__equal(lhs, rhs)); +END_RCPP } #else -RcppExport SEXP _arrow_dataset___expr__equal(SEXP lhs_sexp, SEXP rhs_sexp) { - Rf_error( - "Cannot call dataset___expr__equal(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_dataset___expr__equal(SEXP lhs_sexp, SEXP rhs_sexp){ + Rf_error("Cannot call dataset___expr__equal(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // expression.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr dataset___expr__not_equal( - const std::shared_ptr& lhs, - const std::shared_ptr& rhs); -RcppExport SEXP _arrow_dataset___expr__not_equal(SEXP lhs_sexp, SEXP rhs_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type lhs( - lhs_sexp); - Rcpp::traits::input_parameter&>::type rhs( - rhs_sexp); - return Rcpp::wrap(dataset___expr__not_equal(lhs, rhs)); - END_RCPP +std::shared_ptr dataset___expr__not_equal(const std::shared_ptr& lhs, const std::shared_ptr& rhs); +RcppExport SEXP _arrow_dataset___expr__not_equal(SEXP lhs_sexp, SEXP rhs_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type lhs(lhs_sexp); + Rcpp::traits::input_parameter&>::type rhs(rhs_sexp); + return Rcpp::wrap(dataset___expr__not_equal(lhs, rhs)); +END_RCPP } #else -RcppExport SEXP _arrow_dataset___expr__not_equal(SEXP lhs_sexp, SEXP rhs_sexp) { - Rf_error( - "Cannot call dataset___expr__not_equal(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_dataset___expr__not_equal(SEXP lhs_sexp, SEXP rhs_sexp){ + Rf_error("Cannot call dataset___expr__not_equal(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // expression.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr dataset___expr__greater( - const std::shared_ptr& lhs, - const std::shared_ptr& rhs); -RcppExport SEXP _arrow_dataset___expr__greater(SEXP lhs_sexp, SEXP rhs_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type lhs( - lhs_sexp); - Rcpp::traits::input_parameter&>::type rhs( - rhs_sexp); - return Rcpp::wrap(dataset___expr__greater(lhs, rhs)); - END_RCPP +std::shared_ptr dataset___expr__greater(const std::shared_ptr& lhs, const std::shared_ptr& rhs); +RcppExport SEXP _arrow_dataset___expr__greater(SEXP lhs_sexp, SEXP rhs_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type lhs(lhs_sexp); + Rcpp::traits::input_parameter&>::type rhs(rhs_sexp); + return Rcpp::wrap(dataset___expr__greater(lhs, rhs)); +END_RCPP } #else -RcppExport SEXP _arrow_dataset___expr__greater(SEXP lhs_sexp, SEXP rhs_sexp) { - Rf_error( - "Cannot call dataset___expr__greater(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_dataset___expr__greater(SEXP lhs_sexp, SEXP rhs_sexp){ + Rf_error("Cannot call dataset___expr__greater(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // expression.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr dataset___expr__greater_equal( - const std::shared_ptr& lhs, - const std::shared_ptr& rhs); -RcppExport SEXP _arrow_dataset___expr__greater_equal(SEXP lhs_sexp, SEXP rhs_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type lhs( - lhs_sexp); - Rcpp::traits::input_parameter&>::type rhs( - rhs_sexp); - return Rcpp::wrap(dataset___expr__greater_equal(lhs, rhs)); - END_RCPP +std::shared_ptr dataset___expr__greater_equal(const std::shared_ptr& lhs, const std::shared_ptr& rhs); +RcppExport SEXP _arrow_dataset___expr__greater_equal(SEXP lhs_sexp, SEXP rhs_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type lhs(lhs_sexp); + Rcpp::traits::input_parameter&>::type rhs(rhs_sexp); + return Rcpp::wrap(dataset___expr__greater_equal(lhs, rhs)); +END_RCPP } #else -RcppExport SEXP _arrow_dataset___expr__greater_equal(SEXP lhs_sexp, SEXP rhs_sexp) { - Rf_error( - "Cannot call dataset___expr__greater_equal(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_dataset___expr__greater_equal(SEXP lhs_sexp, SEXP rhs_sexp){ + Rf_error("Cannot call dataset___expr__greater_equal(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // expression.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr dataset___expr__less( - const std::shared_ptr& lhs, - const std::shared_ptr& rhs); -RcppExport SEXP _arrow_dataset___expr__less(SEXP lhs_sexp, SEXP rhs_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type lhs( - lhs_sexp); - Rcpp::traits::input_parameter&>::type rhs( - rhs_sexp); - return Rcpp::wrap(dataset___expr__less(lhs, rhs)); - END_RCPP +std::shared_ptr dataset___expr__less(const std::shared_ptr& lhs, const std::shared_ptr& rhs); +RcppExport SEXP _arrow_dataset___expr__less(SEXP lhs_sexp, SEXP rhs_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type lhs(lhs_sexp); + Rcpp::traits::input_parameter&>::type rhs(rhs_sexp); + return Rcpp::wrap(dataset___expr__less(lhs, rhs)); +END_RCPP } #else -RcppExport SEXP _arrow_dataset___expr__less(SEXP lhs_sexp, SEXP rhs_sexp) { - Rf_error( - "Cannot call dataset___expr__less(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_dataset___expr__less(SEXP lhs_sexp, SEXP rhs_sexp){ + Rf_error("Cannot call dataset___expr__less(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // expression.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr dataset___expr__less_equal( - const std::shared_ptr& lhs, - const std::shared_ptr& rhs); -RcppExport SEXP _arrow_dataset___expr__less_equal(SEXP lhs_sexp, SEXP rhs_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type lhs( - lhs_sexp); - Rcpp::traits::input_parameter&>::type rhs( - rhs_sexp); - return Rcpp::wrap(dataset___expr__less_equal(lhs, rhs)); - END_RCPP +std::shared_ptr dataset___expr__less_equal(const std::shared_ptr& lhs, const std::shared_ptr& rhs); +RcppExport SEXP _arrow_dataset___expr__less_equal(SEXP lhs_sexp, SEXP rhs_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type lhs(lhs_sexp); + Rcpp::traits::input_parameter&>::type rhs(rhs_sexp); + return Rcpp::wrap(dataset___expr__less_equal(lhs, rhs)); +END_RCPP } #else -RcppExport SEXP _arrow_dataset___expr__less_equal(SEXP lhs_sexp, SEXP rhs_sexp) { - Rf_error( - "Cannot call dataset___expr__less_equal(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_dataset___expr__less_equal(SEXP lhs_sexp, SEXP rhs_sexp){ + Rf_error("Cannot call dataset___expr__less_equal(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // expression.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr dataset___expr__in( - const std::shared_ptr& lhs, const std::shared_ptr& rhs); -RcppExport SEXP _arrow_dataset___expr__in(SEXP lhs_sexp, SEXP rhs_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type lhs( - lhs_sexp); - Rcpp::traits::input_parameter&>::type rhs(rhs_sexp); - return Rcpp::wrap(dataset___expr__in(lhs, rhs)); - END_RCPP +std::shared_ptr dataset___expr__in(const std::shared_ptr& lhs, const std::shared_ptr& rhs); +RcppExport SEXP _arrow_dataset___expr__in(SEXP lhs_sexp, SEXP rhs_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type lhs(lhs_sexp); + Rcpp::traits::input_parameter&>::type rhs(rhs_sexp); + return Rcpp::wrap(dataset___expr__in(lhs, rhs)); +END_RCPP } #else -RcppExport SEXP _arrow_dataset___expr__in(SEXP lhs_sexp, SEXP rhs_sexp) { - Rf_error( - "Cannot call dataset___expr__in(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_dataset___expr__in(SEXP lhs_sexp, SEXP rhs_sexp){ + Rf_error("Cannot call dataset___expr__in(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // expression.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr dataset___expr__and( - const std::shared_ptr& lhs, - const std::shared_ptr& rhs); -RcppExport SEXP _arrow_dataset___expr__and(SEXP lhs_sexp, SEXP rhs_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type lhs( - lhs_sexp); - Rcpp::traits::input_parameter&>::type rhs( - rhs_sexp); - return Rcpp::wrap(dataset___expr__and(lhs, rhs)); - END_RCPP +std::shared_ptr dataset___expr__and(const std::shared_ptr& lhs, const std::shared_ptr& rhs); +RcppExport SEXP _arrow_dataset___expr__and(SEXP lhs_sexp, SEXP rhs_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type lhs(lhs_sexp); + Rcpp::traits::input_parameter&>::type rhs(rhs_sexp); + return Rcpp::wrap(dataset___expr__and(lhs, rhs)); +END_RCPP } #else -RcppExport SEXP _arrow_dataset___expr__and(SEXP lhs_sexp, SEXP rhs_sexp) { - Rf_error( - "Cannot call dataset___expr__and(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_dataset___expr__and(SEXP lhs_sexp, SEXP rhs_sexp){ + Rf_error("Cannot call dataset___expr__and(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // expression.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr dataset___expr__or( - const std::shared_ptr& lhs, - const std::shared_ptr& rhs); -RcppExport SEXP _arrow_dataset___expr__or(SEXP lhs_sexp, SEXP rhs_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type lhs( - lhs_sexp); - Rcpp::traits::input_parameter&>::type rhs( - rhs_sexp); - return Rcpp::wrap(dataset___expr__or(lhs, rhs)); - END_RCPP +std::shared_ptr dataset___expr__or(const std::shared_ptr& lhs, const std::shared_ptr& rhs); +RcppExport SEXP _arrow_dataset___expr__or(SEXP lhs_sexp, SEXP rhs_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type lhs(lhs_sexp); + Rcpp::traits::input_parameter&>::type rhs(rhs_sexp); + return Rcpp::wrap(dataset___expr__or(lhs, rhs)); +END_RCPP } #else -RcppExport SEXP _arrow_dataset___expr__or(SEXP lhs_sexp, SEXP rhs_sexp) { - Rf_error( - "Cannot call dataset___expr__or(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_dataset___expr__or(SEXP lhs_sexp, SEXP rhs_sexp){ + Rf_error("Cannot call dataset___expr__or(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // expression.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr dataset___expr__not( - const std::shared_ptr& lhs); -RcppExport SEXP _arrow_dataset___expr__not(SEXP lhs_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type lhs( - lhs_sexp); - return Rcpp::wrap(dataset___expr__not(lhs)); - END_RCPP +std::shared_ptr dataset___expr__not(const std::shared_ptr& lhs); +RcppExport SEXP _arrow_dataset___expr__not(SEXP lhs_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type lhs(lhs_sexp); + return Rcpp::wrap(dataset___expr__not(lhs)); +END_RCPP } #else -RcppExport SEXP _arrow_dataset___expr__not(SEXP lhs_sexp) { - Rf_error( - "Cannot call dataset___expr__not(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_dataset___expr__not(SEXP lhs_sexp){ + Rf_error("Cannot call dataset___expr__not(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // expression.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr dataset___expr__is_valid( - const std::shared_ptr& lhs); -RcppExport SEXP _arrow_dataset___expr__is_valid(SEXP lhs_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type lhs( - lhs_sexp); - return Rcpp::wrap(dataset___expr__is_valid(lhs)); - END_RCPP +std::shared_ptr dataset___expr__is_valid(const std::shared_ptr& lhs); +RcppExport SEXP _arrow_dataset___expr__is_valid(SEXP lhs_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type lhs(lhs_sexp); + return Rcpp::wrap(dataset___expr__is_valid(lhs)); +END_RCPP } #else -RcppExport SEXP _arrow_dataset___expr__is_valid(SEXP lhs_sexp) { - Rf_error( - "Cannot call dataset___expr__is_valid(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_dataset___expr__is_valid(SEXP lhs_sexp){ + Rf_error("Cannot call dataset___expr__is_valid(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // expression.cpp #if defined(ARROW_R_WITH_ARROW) std::shared_ptr dataset___expr__scalar(SEXP x); -RcppExport SEXP _arrow_dataset___expr__scalar(SEXP x_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter::type x(x_sexp); - return Rcpp::wrap(dataset___expr__scalar(x)); - END_RCPP +RcppExport SEXP _arrow_dataset___expr__scalar(SEXP x_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter::type x(x_sexp); + return Rcpp::wrap(dataset___expr__scalar(x)); +END_RCPP } #else -RcppExport SEXP _arrow_dataset___expr__scalar(SEXP x_sexp) { - Rf_error( - "Cannot call dataset___expr__scalar(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_dataset___expr__scalar(SEXP x_sexp){ + Rf_error("Cannot call dataset___expr__scalar(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // expression.cpp #if defined(ARROW_R_WITH_ARROW) std::string dataset___expr__ToString(const std::shared_ptr& x); -RcppExport SEXP _arrow_dataset___expr__ToString(SEXP x_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type x(x_sexp); - return Rcpp::wrap(dataset___expr__ToString(x)); - END_RCPP +RcppExport SEXP _arrow_dataset___expr__ToString(SEXP x_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type x(x_sexp); + return Rcpp::wrap(dataset___expr__ToString(x)); +END_RCPP } #else -RcppExport SEXP _arrow_dataset___expr__ToString(SEXP x_sexp) { - Rf_error( - "Cannot call dataset___expr__ToString(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_dataset___expr__ToString(SEXP x_sexp){ + Rf_error("Cannot call dataset___expr__ToString(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // feather.cpp #if defined(ARROW_R_WITH_ARROW) -void ipc___feather___TableWriter__SetDescription( - const std::unique_ptr& writer, - const std::string& description); -RcppExport SEXP _arrow_ipc___feather___TableWriter__SetDescription( - SEXP writer_sexp, SEXP description_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter< - const std::unique_ptr&>::type writer(writer_sexp); - Rcpp::traits::input_parameter::type description(description_sexp); - ipc___feather___TableWriter__SetDescription(writer, description); - return R_NilValue; - END_RCPP +void ipc___feather___TableWriter__SetDescription(const std::unique_ptr& writer, const std::string& description); +RcppExport SEXP _arrow_ipc___feather___TableWriter__SetDescription(SEXP writer_sexp, SEXP description_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type writer(writer_sexp); + Rcpp::traits::input_parameter::type description(description_sexp); + ipc___feather___TableWriter__SetDescription(writer, description); + return R_NilValue; +END_RCPP } #else -RcppExport SEXP _arrow_ipc___feather___TableWriter__SetDescription( - SEXP writer_sexp, SEXP description_sexp) { - Rf_error( - "Cannot call ipc___feather___TableWriter__SetDescription(). Please use " - "arrow::install_arrow() to install required runtime libraries. "); +RcppExport SEXP _arrow_ipc___feather___TableWriter__SetDescription(SEXP writer_sexp, SEXP description_sexp){ + Rf_error("Cannot call ipc___feather___TableWriter__SetDescription(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // feather.cpp #if defined(ARROW_R_WITH_ARROW) -void ipc___feather___TableWriter__SetNumRows( - const std::unique_ptr& writer, int64_t num_rows); -RcppExport SEXP _arrow_ipc___feather___TableWriter__SetNumRows(SEXP writer_sexp, - SEXP num_rows_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter< - const std::unique_ptr&>::type writer(writer_sexp); - Rcpp::traits::input_parameter::type num_rows(num_rows_sexp); - ipc___feather___TableWriter__SetNumRows(writer, num_rows); - return R_NilValue; - END_RCPP +void ipc___feather___TableWriter__SetNumRows(const std::unique_ptr& writer, int64_t num_rows); +RcppExport SEXP _arrow_ipc___feather___TableWriter__SetNumRows(SEXP writer_sexp, SEXP num_rows_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type writer(writer_sexp); + Rcpp::traits::input_parameter::type num_rows(num_rows_sexp); + ipc___feather___TableWriter__SetNumRows(writer, num_rows); + return R_NilValue; +END_RCPP } #else -RcppExport SEXP _arrow_ipc___feather___TableWriter__SetNumRows(SEXP writer_sexp, - SEXP num_rows_sexp) { - Rf_error( - "Cannot call ipc___feather___TableWriter__SetNumRows(). Please use " - "arrow::install_arrow() to install required runtime libraries. "); +RcppExport SEXP _arrow_ipc___feather___TableWriter__SetNumRows(SEXP writer_sexp, SEXP num_rows_sexp){ + Rf_error("Cannot call ipc___feather___TableWriter__SetNumRows(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // feather.cpp #if defined(ARROW_R_WITH_ARROW) -void ipc___feather___TableWriter__Append( - const std::unique_ptr& writer, - const std::string& name, const std::shared_ptr& values); -RcppExport SEXP _arrow_ipc___feather___TableWriter__Append(SEXP writer_sexp, - SEXP name_sexp, - SEXP values_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter< - const std::unique_ptr&>::type writer(writer_sexp); - Rcpp::traits::input_parameter::type name(name_sexp); - Rcpp::traits::input_parameter&>::type values( - values_sexp); - ipc___feather___TableWriter__Append(writer, name, values); - return R_NilValue; - END_RCPP +void ipc___feather___TableWriter__Append(const std::unique_ptr& writer, const std::string& name, const std::shared_ptr& values); +RcppExport SEXP _arrow_ipc___feather___TableWriter__Append(SEXP writer_sexp, SEXP name_sexp, SEXP values_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type writer(writer_sexp); + Rcpp::traits::input_parameter::type name(name_sexp); + Rcpp::traits::input_parameter&>::type values(values_sexp); + ipc___feather___TableWriter__Append(writer, name, values); + return R_NilValue; +END_RCPP } #else -RcppExport SEXP _arrow_ipc___feather___TableWriter__Append(SEXP writer_sexp, - SEXP name_sexp, - SEXP values_sexp) { - Rf_error( - "Cannot call ipc___feather___TableWriter__Append(). Please use " - "arrow::install_arrow() to install required runtime libraries. "); +RcppExport SEXP _arrow_ipc___feather___TableWriter__Append(SEXP writer_sexp, SEXP name_sexp, SEXP values_sexp){ + Rf_error("Cannot call ipc___feather___TableWriter__Append(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // feather.cpp #if defined(ARROW_R_WITH_ARROW) -void ipc___feather___TableWriter__Finalize( - const std::unique_ptr& writer); -RcppExport SEXP _arrow_ipc___feather___TableWriter__Finalize(SEXP writer_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter< - const std::unique_ptr&>::type writer(writer_sexp); - ipc___feather___TableWriter__Finalize(writer); - return R_NilValue; - END_RCPP +void ipc___feather___TableWriter__Finalize(const std::unique_ptr& writer); +RcppExport SEXP _arrow_ipc___feather___TableWriter__Finalize(SEXP writer_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type writer(writer_sexp); + ipc___feather___TableWriter__Finalize(writer); + return R_NilValue; +END_RCPP } #else -RcppExport SEXP _arrow_ipc___feather___TableWriter__Finalize(SEXP writer_sexp) { - Rf_error( - "Cannot call ipc___feather___TableWriter__Finalize(). Please use " - "arrow::install_arrow() to install required runtime libraries. "); +RcppExport SEXP _arrow_ipc___feather___TableWriter__Finalize(SEXP writer_sexp){ + Rf_error("Cannot call ipc___feather___TableWriter__Finalize(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // feather.cpp #if defined(ARROW_R_WITH_ARROW) -std::unique_ptr ipc___feather___TableWriter__Open( - const std::shared_ptr& stream); -RcppExport SEXP _arrow_ipc___feather___TableWriter__Open(SEXP stream_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type - stream(stream_sexp); - return Rcpp::wrap(ipc___feather___TableWriter__Open(stream)); - END_RCPP +std::unique_ptr ipc___feather___TableWriter__Open(const std::shared_ptr& stream); +RcppExport SEXP _arrow_ipc___feather___TableWriter__Open(SEXP stream_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type stream(stream_sexp); + return Rcpp::wrap(ipc___feather___TableWriter__Open(stream)); +END_RCPP } #else -RcppExport SEXP _arrow_ipc___feather___TableWriter__Open(SEXP stream_sexp) { - Rf_error( - "Cannot call ipc___feather___TableWriter__Open(). Please use " - "arrow::install_arrow() to install required runtime libraries. "); +RcppExport SEXP _arrow_ipc___feather___TableWriter__Open(SEXP stream_sexp){ + Rf_error("Cannot call ipc___feather___TableWriter__Open(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // feather.cpp #if defined(ARROW_R_WITH_ARROW) -void ipc___TableWriter__RecordBatch__WriteFeather( - const std::unique_ptr& writer, - const std::shared_ptr& batch); -RcppExport SEXP _arrow_ipc___TableWriter__RecordBatch__WriteFeather(SEXP writer_sexp, - SEXP batch_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter< - const std::unique_ptr&>::type writer(writer_sexp); - Rcpp::traits::input_parameter&>::type batch( - batch_sexp); - ipc___TableWriter__RecordBatch__WriteFeather(writer, batch); - return R_NilValue; - END_RCPP +void ipc___TableWriter__RecordBatch__WriteFeather(const std::unique_ptr& writer, const std::shared_ptr& batch); +RcppExport SEXP _arrow_ipc___TableWriter__RecordBatch__WriteFeather(SEXP writer_sexp, SEXP batch_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type writer(writer_sexp); + Rcpp::traits::input_parameter&>::type batch(batch_sexp); + ipc___TableWriter__RecordBatch__WriteFeather(writer, batch); + return R_NilValue; +END_RCPP } #else -RcppExport SEXP _arrow_ipc___TableWriter__RecordBatch__WriteFeather(SEXP writer_sexp, - SEXP batch_sexp) { - Rf_error( - "Cannot call ipc___TableWriter__RecordBatch__WriteFeather(). Please use " - "arrow::install_arrow() to install required runtime libraries. "); +RcppExport SEXP _arrow_ipc___TableWriter__RecordBatch__WriteFeather(SEXP writer_sexp, SEXP batch_sexp){ + Rf_error("Cannot call ipc___TableWriter__RecordBatch__WriteFeather(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // feather.cpp #if defined(ARROW_R_WITH_ARROW) -std::string ipc___feather___TableReader__GetDescription( - const std::unique_ptr& reader); -RcppExport SEXP _arrow_ipc___feather___TableReader__GetDescription(SEXP reader_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter< - const std::unique_ptr&>::type reader(reader_sexp); - return Rcpp::wrap(ipc___feather___TableReader__GetDescription(reader)); - END_RCPP +std::string ipc___feather___TableReader__GetDescription(const std::unique_ptr& reader); +RcppExport SEXP _arrow_ipc___feather___TableReader__GetDescription(SEXP reader_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type reader(reader_sexp); + return Rcpp::wrap(ipc___feather___TableReader__GetDescription(reader)); +END_RCPP } #else -RcppExport SEXP _arrow_ipc___feather___TableReader__GetDescription(SEXP reader_sexp) { - Rf_error( - "Cannot call ipc___feather___TableReader__GetDescription(). Please use " - "arrow::install_arrow() to install required runtime libraries. "); +RcppExport SEXP _arrow_ipc___feather___TableReader__GetDescription(SEXP reader_sexp){ + Rf_error("Cannot call ipc___feather___TableReader__GetDescription(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // feather.cpp #if defined(ARROW_R_WITH_ARROW) -bool ipc___feather___TableReader__HasDescription( - const std::unique_ptr& reader); -RcppExport SEXP _arrow_ipc___feather___TableReader__HasDescription(SEXP reader_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter< - const std::unique_ptr&>::type reader(reader_sexp); - return Rcpp::wrap(ipc___feather___TableReader__HasDescription(reader)); - END_RCPP +bool ipc___feather___TableReader__HasDescription(const std::unique_ptr& reader); +RcppExport SEXP _arrow_ipc___feather___TableReader__HasDescription(SEXP reader_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type reader(reader_sexp); + return Rcpp::wrap(ipc___feather___TableReader__HasDescription(reader)); +END_RCPP } #else -RcppExport SEXP _arrow_ipc___feather___TableReader__HasDescription(SEXP reader_sexp) { - Rf_error( - "Cannot call ipc___feather___TableReader__HasDescription(). Please use " - "arrow::install_arrow() to install required runtime libraries. "); +RcppExport SEXP _arrow_ipc___feather___TableReader__HasDescription(SEXP reader_sexp){ + Rf_error("Cannot call ipc___feather___TableReader__HasDescription(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // feather.cpp #if defined(ARROW_R_WITH_ARROW) -int ipc___feather___TableReader__version( - const std::unique_ptr& reader); -RcppExport SEXP _arrow_ipc___feather___TableReader__version(SEXP reader_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter< - const std::unique_ptr&>::type reader(reader_sexp); - return Rcpp::wrap(ipc___feather___TableReader__version(reader)); - END_RCPP +int ipc___feather___TableReader__version(const std::unique_ptr& reader); +RcppExport SEXP _arrow_ipc___feather___TableReader__version(SEXP reader_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type reader(reader_sexp); + return Rcpp::wrap(ipc___feather___TableReader__version(reader)); +END_RCPP } #else -RcppExport SEXP _arrow_ipc___feather___TableReader__version(SEXP reader_sexp) { - Rf_error( - "Cannot call ipc___feather___TableReader__version(). Please use " - "arrow::install_arrow() to install required runtime libraries. "); +RcppExport SEXP _arrow_ipc___feather___TableReader__version(SEXP reader_sexp){ + Rf_error("Cannot call ipc___feather___TableReader__version(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // feather.cpp #if defined(ARROW_R_WITH_ARROW) -int64_t ipc___feather___TableReader__num_rows( - const std::unique_ptr& reader); -RcppExport SEXP _arrow_ipc___feather___TableReader__num_rows(SEXP reader_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter< - const std::unique_ptr&>::type reader(reader_sexp); - return Rcpp::wrap(ipc___feather___TableReader__num_rows(reader)); - END_RCPP +int64_t ipc___feather___TableReader__num_rows(const std::unique_ptr& reader); +RcppExport SEXP _arrow_ipc___feather___TableReader__num_rows(SEXP reader_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type reader(reader_sexp); + return Rcpp::wrap(ipc___feather___TableReader__num_rows(reader)); +END_RCPP } #else -RcppExport SEXP _arrow_ipc___feather___TableReader__num_rows(SEXP reader_sexp) { - Rf_error( - "Cannot call ipc___feather___TableReader__num_rows(). Please use " - "arrow::install_arrow() to install required runtime libraries. "); +RcppExport SEXP _arrow_ipc___feather___TableReader__num_rows(SEXP reader_sexp){ + Rf_error("Cannot call ipc___feather___TableReader__num_rows(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // feather.cpp #if defined(ARROW_R_WITH_ARROW) -int64_t ipc___feather___TableReader__num_columns( - const std::unique_ptr& reader); -RcppExport SEXP _arrow_ipc___feather___TableReader__num_columns(SEXP reader_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter< - const std::unique_ptr&>::type reader(reader_sexp); - return Rcpp::wrap(ipc___feather___TableReader__num_columns(reader)); - END_RCPP +int64_t ipc___feather___TableReader__num_columns(const std::unique_ptr& reader); +RcppExport SEXP _arrow_ipc___feather___TableReader__num_columns(SEXP reader_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type reader(reader_sexp); + return Rcpp::wrap(ipc___feather___TableReader__num_columns(reader)); +END_RCPP } #else -RcppExport SEXP _arrow_ipc___feather___TableReader__num_columns(SEXP reader_sexp) { - Rf_error( - "Cannot call ipc___feather___TableReader__num_columns(). Please use " - "arrow::install_arrow() to install required runtime libraries. "); +RcppExport SEXP _arrow_ipc___feather___TableReader__num_columns(SEXP reader_sexp){ + Rf_error("Cannot call ipc___feather___TableReader__num_columns(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // feather.cpp #if defined(ARROW_R_WITH_ARROW) -std::string ipc___feather___TableReader__GetColumnName( - const std::unique_ptr& reader, int i); -RcppExport SEXP _arrow_ipc___feather___TableReader__GetColumnName(SEXP reader_sexp, - SEXP i_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter< - const std::unique_ptr&>::type reader(reader_sexp); - Rcpp::traits::input_parameter::type i(i_sexp); - return Rcpp::wrap(ipc___feather___TableReader__GetColumnName(reader, i)); - END_RCPP +std::string ipc___feather___TableReader__GetColumnName(const std::unique_ptr& reader, int i); +RcppExport SEXP _arrow_ipc___feather___TableReader__GetColumnName(SEXP reader_sexp, SEXP i_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type reader(reader_sexp); + Rcpp::traits::input_parameter::type i(i_sexp); + return Rcpp::wrap(ipc___feather___TableReader__GetColumnName(reader, i)); +END_RCPP } #else -RcppExport SEXP _arrow_ipc___feather___TableReader__GetColumnName(SEXP reader_sexp, - SEXP i_sexp) { - Rf_error( - "Cannot call ipc___feather___TableReader__GetColumnName(). Please use " - "arrow::install_arrow() to install required runtime libraries. "); +RcppExport SEXP _arrow_ipc___feather___TableReader__GetColumnName(SEXP reader_sexp, SEXP i_sexp){ + Rf_error("Cannot call ipc___feather___TableReader__GetColumnName(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // feather.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr ipc___feather___TableReader__GetColumn( - const std::unique_ptr& reader, int i); -RcppExport SEXP _arrow_ipc___feather___TableReader__GetColumn(SEXP reader_sexp, - SEXP i_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter< - const std::unique_ptr&>::type reader(reader_sexp); - Rcpp::traits::input_parameter::type i(i_sexp); - return Rcpp::wrap(ipc___feather___TableReader__GetColumn(reader, i)); - END_RCPP +std::shared_ptr ipc___feather___TableReader__GetColumn(const std::unique_ptr& reader, int i); +RcppExport SEXP _arrow_ipc___feather___TableReader__GetColumn(SEXP reader_sexp, SEXP i_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type reader(reader_sexp); + Rcpp::traits::input_parameter::type i(i_sexp); + return Rcpp::wrap(ipc___feather___TableReader__GetColumn(reader, i)); +END_RCPP } #else -RcppExport SEXP _arrow_ipc___feather___TableReader__GetColumn(SEXP reader_sexp, - SEXP i_sexp) { - Rf_error( - "Cannot call ipc___feather___TableReader__GetColumn(). Please use " - "arrow::install_arrow() to install required runtime libraries. "); +RcppExport SEXP _arrow_ipc___feather___TableReader__GetColumn(SEXP reader_sexp, SEXP i_sexp){ + Rf_error("Cannot call ipc___feather___TableReader__GetColumn(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // feather.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr ipc___feather___TableReader__Read( - const std::unique_ptr& reader, SEXP columns); -RcppExport SEXP _arrow_ipc___feather___TableReader__Read(SEXP reader_sexp, - SEXP columns_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter< - const std::unique_ptr&>::type reader(reader_sexp); - Rcpp::traits::input_parameter::type columns(columns_sexp); - return Rcpp::wrap(ipc___feather___TableReader__Read(reader, columns)); - END_RCPP +std::shared_ptr ipc___feather___TableReader__Read(const std::unique_ptr& reader, SEXP columns); +RcppExport SEXP _arrow_ipc___feather___TableReader__Read(SEXP reader_sexp, SEXP columns_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type reader(reader_sexp); + Rcpp::traits::input_parameter::type columns(columns_sexp); + return Rcpp::wrap(ipc___feather___TableReader__Read(reader, columns)); +END_RCPP } #else -RcppExport SEXP _arrow_ipc___feather___TableReader__Read(SEXP reader_sexp, - SEXP columns_sexp) { - Rf_error( - "Cannot call ipc___feather___TableReader__Read(). Please use " - "arrow::install_arrow() to install required runtime libraries. "); +RcppExport SEXP _arrow_ipc___feather___TableReader__Read(SEXP reader_sexp, SEXP columns_sexp){ + Rf_error("Cannot call ipc___feather___TableReader__Read(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // feather.cpp #if defined(ARROW_R_WITH_ARROW) -std::unique_ptr ipc___feather___TableReader__Open( - const std::shared_ptr& stream); -RcppExport SEXP _arrow_ipc___feather___TableReader__Open(SEXP stream_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type - stream(stream_sexp); - return Rcpp::wrap(ipc___feather___TableReader__Open(stream)); - END_RCPP +std::unique_ptr ipc___feather___TableReader__Open(const std::shared_ptr& stream); +RcppExport SEXP _arrow_ipc___feather___TableReader__Open(SEXP stream_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type stream(stream_sexp); + return Rcpp::wrap(ipc___feather___TableReader__Open(stream)); +END_RCPP } #else -RcppExport SEXP _arrow_ipc___feather___TableReader__Open(SEXP stream_sexp) { - Rf_error( - "Cannot call ipc___feather___TableReader__Open(). Please use " - "arrow::install_arrow() to install required runtime libraries. "); +RcppExport SEXP _arrow_ipc___feather___TableReader__Open(SEXP stream_sexp){ + Rf_error("Cannot call ipc___feather___TableReader__Open(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // feather.cpp #if defined(ARROW_R_WITH_ARROW) -Rcpp::CharacterVector ipc___feather___TableReader__column_names( - const std::unique_ptr& reader); -RcppExport SEXP _arrow_ipc___feather___TableReader__column_names(SEXP reader_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter< - const std::unique_ptr&>::type reader(reader_sexp); - return Rcpp::wrap(ipc___feather___TableReader__column_names(reader)); - END_RCPP +Rcpp::CharacterVector ipc___feather___TableReader__column_names(const std::unique_ptr& reader); +RcppExport SEXP _arrow_ipc___feather___TableReader__column_names(SEXP reader_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type reader(reader_sexp); + return Rcpp::wrap(ipc___feather___TableReader__column_names(reader)); +END_RCPP } #else -RcppExport SEXP _arrow_ipc___feather___TableReader__column_names(SEXP reader_sexp) { - Rf_error( - "Cannot call ipc___feather___TableReader__column_names(). Please use " - "arrow::install_arrow() to install required runtime libraries. "); +RcppExport SEXP _arrow_ipc___feather___TableReader__column_names(SEXP reader_sexp){ + Rf_error("Cannot call ipc___feather___TableReader__column_names(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // field.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr Field__initialize( - const std::string& name, const std::shared_ptr& field, - bool nullable); -RcppExport SEXP _arrow_Field__initialize(SEXP name_sexp, SEXP field_sexp, - SEXP nullable_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter::type name(name_sexp); - Rcpp::traits::input_parameter&>::type field( - field_sexp); - Rcpp::traits::input_parameter::type nullable(nullable_sexp); - return Rcpp::wrap(Field__initialize(name, field, nullable)); - END_RCPP +std::shared_ptr Field__initialize(const std::string& name, const std::shared_ptr& field, bool nullable); +RcppExport SEXP _arrow_Field__initialize(SEXP name_sexp, SEXP field_sexp, SEXP nullable_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter::type name(name_sexp); + Rcpp::traits::input_parameter&>::type field(field_sexp); + Rcpp::traits::input_parameter::type nullable(nullable_sexp); + return Rcpp::wrap(Field__initialize(name, field, nullable)); +END_RCPP } #else -RcppExport SEXP _arrow_Field__initialize(SEXP name_sexp, SEXP field_sexp, - SEXP nullable_sexp) { - Rf_error( - "Cannot call Field__initialize(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_Field__initialize(SEXP name_sexp, SEXP field_sexp, SEXP nullable_sexp){ + Rf_error("Cannot call Field__initialize(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // field.cpp #if defined(ARROW_R_WITH_ARROW) std::string Field__ToString(const std::shared_ptr& field); -RcppExport SEXP _arrow_Field__ToString(SEXP field_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type field( - field_sexp); - return Rcpp::wrap(Field__ToString(field)); - END_RCPP +RcppExport SEXP _arrow_Field__ToString(SEXP field_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type field(field_sexp); + return Rcpp::wrap(Field__ToString(field)); +END_RCPP } #else -RcppExport SEXP _arrow_Field__ToString(SEXP field_sexp) { - Rf_error( - "Cannot call Field__ToString(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_Field__ToString(SEXP field_sexp){ + Rf_error("Cannot call Field__ToString(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // field.cpp #if defined(ARROW_R_WITH_ARROW) std::string Field__name(const std::shared_ptr& field); -RcppExport SEXP _arrow_Field__name(SEXP field_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type field( - field_sexp); - return Rcpp::wrap(Field__name(field)); - END_RCPP +RcppExport SEXP _arrow_Field__name(SEXP field_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type field(field_sexp); + return Rcpp::wrap(Field__name(field)); +END_RCPP } #else -RcppExport SEXP _arrow_Field__name(SEXP field_sexp) { - Rf_error( - "Cannot call Field__name(). Please use arrow::install_arrow() to install required " - "runtime libraries. "); +RcppExport SEXP _arrow_Field__name(SEXP field_sexp){ + Rf_error("Cannot call Field__name(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // field.cpp #if defined(ARROW_R_WITH_ARROW) -bool Field__Equals(const std::shared_ptr& field, - const std::shared_ptr& other); -RcppExport SEXP _arrow_Field__Equals(SEXP field_sexp, SEXP other_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type field( - field_sexp); - Rcpp::traits::input_parameter&>::type other( - other_sexp); - return Rcpp::wrap(Field__Equals(field, other)); - END_RCPP +bool Field__Equals(const std::shared_ptr& field, const std::shared_ptr& other); +RcppExport SEXP _arrow_Field__Equals(SEXP field_sexp, SEXP other_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type field(field_sexp); + Rcpp::traits::input_parameter&>::type other(other_sexp); + return Rcpp::wrap(Field__Equals(field, other)); +END_RCPP } #else -RcppExport SEXP _arrow_Field__Equals(SEXP field_sexp, SEXP other_sexp) { - Rf_error( - "Cannot call Field__Equals(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_Field__Equals(SEXP field_sexp, SEXP other_sexp){ + Rf_error("Cannot call Field__Equals(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // field.cpp #if defined(ARROW_R_WITH_ARROW) bool Field__nullable(const std::shared_ptr& field); -RcppExport SEXP _arrow_Field__nullable(SEXP field_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type field( - field_sexp); - return Rcpp::wrap(Field__nullable(field)); - END_RCPP +RcppExport SEXP _arrow_Field__nullable(SEXP field_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type field(field_sexp); + return Rcpp::wrap(Field__nullable(field)); +END_RCPP } #else -RcppExport SEXP _arrow_Field__nullable(SEXP field_sexp) { - Rf_error( - "Cannot call Field__nullable(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_Field__nullable(SEXP field_sexp){ + Rf_error("Cannot call Field__nullable(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // field.cpp #if defined(ARROW_R_WITH_ARROW) std::shared_ptr Field__type(const std::shared_ptr& field); -RcppExport SEXP _arrow_Field__type(SEXP field_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type field( - field_sexp); - return Rcpp::wrap(Field__type(field)); - END_RCPP +RcppExport SEXP _arrow_Field__type(SEXP field_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type field(field_sexp); + return Rcpp::wrap(Field__type(field)); +END_RCPP } #else -RcppExport SEXP _arrow_Field__type(SEXP field_sexp) { - Rf_error( - "Cannot call Field__type(). Please use arrow::install_arrow() to install required " - "runtime libraries. "); +RcppExport SEXP _arrow_Field__type(SEXP field_sexp){ + Rf_error("Cannot call Field__type(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // filesystem.cpp #if defined(ARROW_R_WITH_ARROW) fs::FileType fs___FileStats__type(const std::shared_ptr& x); -RcppExport SEXP _arrow_fs___FileStats__type(SEXP x_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type x(x_sexp); - return Rcpp::wrap(fs___FileStats__type(x)); - END_RCPP +RcppExport SEXP _arrow_fs___FileStats__type(SEXP x_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type x(x_sexp); + return Rcpp::wrap(fs___FileStats__type(x)); +END_RCPP } #else -RcppExport SEXP _arrow_fs___FileStats__type(SEXP x_sexp) { - Rf_error( - "Cannot call fs___FileStats__type(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_fs___FileStats__type(SEXP x_sexp){ + Rf_error("Cannot call fs___FileStats__type(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // filesystem.cpp #if defined(ARROW_R_WITH_ARROW) void fs___FileStats__set_type(const std::shared_ptr& x, fs::FileType type); -RcppExport SEXP _arrow_fs___FileStats__set_type(SEXP x_sexp, SEXP type_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type x(x_sexp); - Rcpp::traits::input_parameter::type type(type_sexp); - fs___FileStats__set_type(x, type); - return R_NilValue; - END_RCPP +RcppExport SEXP _arrow_fs___FileStats__set_type(SEXP x_sexp, SEXP type_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type x(x_sexp); + Rcpp::traits::input_parameter::type type(type_sexp); + fs___FileStats__set_type(x, type); + return R_NilValue; +END_RCPP } #else -RcppExport SEXP _arrow_fs___FileStats__set_type(SEXP x_sexp, SEXP type_sexp) { - Rf_error( - "Cannot call fs___FileStats__set_type(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_fs___FileStats__set_type(SEXP x_sexp, SEXP type_sexp){ + Rf_error("Cannot call fs___FileStats__set_type(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // filesystem.cpp #if defined(ARROW_R_WITH_ARROW) std::string fs___FileStats__path(const std::shared_ptr& x); -RcppExport SEXP _arrow_fs___FileStats__path(SEXP x_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type x(x_sexp); - return Rcpp::wrap(fs___FileStats__path(x)); - END_RCPP +RcppExport SEXP _arrow_fs___FileStats__path(SEXP x_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type x(x_sexp); + return Rcpp::wrap(fs___FileStats__path(x)); +END_RCPP } #else -RcppExport SEXP _arrow_fs___FileStats__path(SEXP x_sexp) { - Rf_error( - "Cannot call fs___FileStats__path(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_fs___FileStats__path(SEXP x_sexp){ + Rf_error("Cannot call fs___FileStats__path(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // filesystem.cpp #if defined(ARROW_R_WITH_ARROW) -void fs___FileStats__set_path(const std::shared_ptr& x, - const std::string& path); -RcppExport SEXP _arrow_fs___FileStats__set_path(SEXP x_sexp, SEXP path_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type x(x_sexp); - Rcpp::traits::input_parameter::type path(path_sexp); - fs___FileStats__set_path(x, path); - return R_NilValue; - END_RCPP +void fs___FileStats__set_path(const std::shared_ptr& x, const std::string& path); +RcppExport SEXP _arrow_fs___FileStats__set_path(SEXP x_sexp, SEXP path_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type x(x_sexp); + Rcpp::traits::input_parameter::type path(path_sexp); + fs___FileStats__set_path(x, path); + return R_NilValue; +END_RCPP } #else -RcppExport SEXP _arrow_fs___FileStats__set_path(SEXP x_sexp, SEXP path_sexp) { - Rf_error( - "Cannot call fs___FileStats__set_path(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_fs___FileStats__set_path(SEXP x_sexp, SEXP path_sexp){ + Rf_error("Cannot call fs___FileStats__set_path(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // filesystem.cpp #if defined(ARROW_R_WITH_ARROW) int64_t fs___FileStats__size(const std::shared_ptr& x); -RcppExport SEXP _arrow_fs___FileStats__size(SEXP x_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type x(x_sexp); - return Rcpp::wrap(fs___FileStats__size(x)); - END_RCPP +RcppExport SEXP _arrow_fs___FileStats__size(SEXP x_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type x(x_sexp); + return Rcpp::wrap(fs___FileStats__size(x)); +END_RCPP } #else -RcppExport SEXP _arrow_fs___FileStats__size(SEXP x_sexp) { - Rf_error( - "Cannot call fs___FileStats__size(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_fs___FileStats__size(SEXP x_sexp){ + Rf_error("Cannot call fs___FileStats__size(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // filesystem.cpp #if defined(ARROW_R_WITH_ARROW) void fs___FileStats__set_size(const std::shared_ptr& x, int64_t size); -RcppExport SEXP _arrow_fs___FileStats__set_size(SEXP x_sexp, SEXP size_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type x(x_sexp); - Rcpp::traits::input_parameter::type size(size_sexp); - fs___FileStats__set_size(x, size); - return R_NilValue; - END_RCPP +RcppExport SEXP _arrow_fs___FileStats__set_size(SEXP x_sexp, SEXP size_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type x(x_sexp); + Rcpp::traits::input_parameter::type size(size_sexp); + fs___FileStats__set_size(x, size); + return R_NilValue; +END_RCPP } #else -RcppExport SEXP _arrow_fs___FileStats__set_size(SEXP x_sexp, SEXP size_sexp) { - Rf_error( - "Cannot call fs___FileStats__set_size(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_fs___FileStats__set_size(SEXP x_sexp, SEXP size_sexp){ + Rf_error("Cannot call fs___FileStats__set_size(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // filesystem.cpp #if defined(ARROW_R_WITH_ARROW) std::string fs___FileStats__base_name(const std::shared_ptr& x); -RcppExport SEXP _arrow_fs___FileStats__base_name(SEXP x_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type x(x_sexp); - return Rcpp::wrap(fs___FileStats__base_name(x)); - END_RCPP +RcppExport SEXP _arrow_fs___FileStats__base_name(SEXP x_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type x(x_sexp); + return Rcpp::wrap(fs___FileStats__base_name(x)); +END_RCPP } #else -RcppExport SEXP _arrow_fs___FileStats__base_name(SEXP x_sexp) { - Rf_error( - "Cannot call fs___FileStats__base_name(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_fs___FileStats__base_name(SEXP x_sexp){ + Rf_error("Cannot call fs___FileStats__base_name(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // filesystem.cpp #if defined(ARROW_R_WITH_ARROW) std::string fs___FileStats__extension(const std::shared_ptr& x); -RcppExport SEXP _arrow_fs___FileStats__extension(SEXP x_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type x(x_sexp); - return Rcpp::wrap(fs___FileStats__extension(x)); - END_RCPP +RcppExport SEXP _arrow_fs___FileStats__extension(SEXP x_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type x(x_sexp); + return Rcpp::wrap(fs___FileStats__extension(x)); +END_RCPP } #else -RcppExport SEXP _arrow_fs___FileStats__extension(SEXP x_sexp) { - Rf_error( - "Cannot call fs___FileStats__extension(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_fs___FileStats__extension(SEXP x_sexp){ + Rf_error("Cannot call fs___FileStats__extension(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // filesystem.cpp #if defined(ARROW_R_WITH_ARROW) SEXP fs___FileStats__mtime(const std::shared_ptr& x); -RcppExport SEXP _arrow_fs___FileStats__mtime(SEXP x_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type x(x_sexp); - return Rcpp::wrap(fs___FileStats__mtime(x)); - END_RCPP +RcppExport SEXP _arrow_fs___FileStats__mtime(SEXP x_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type x(x_sexp); + return Rcpp::wrap(fs___FileStats__mtime(x)); +END_RCPP } #else -RcppExport SEXP _arrow_fs___FileStats__mtime(SEXP x_sexp) { - Rf_error( - "Cannot call fs___FileStats__mtime(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_fs___FileStats__mtime(SEXP x_sexp){ + Rf_error("Cannot call fs___FileStats__mtime(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // filesystem.cpp #if defined(ARROW_R_WITH_ARROW) void fs___FileStats__set_mtime(const std::shared_ptr& x, SEXP time); -RcppExport SEXP _arrow_fs___FileStats__set_mtime(SEXP x_sexp, SEXP time_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type x(x_sexp); - Rcpp::traits::input_parameter::type time(time_sexp); - fs___FileStats__set_mtime(x, time); - return R_NilValue; - END_RCPP +RcppExport SEXP _arrow_fs___FileStats__set_mtime(SEXP x_sexp, SEXP time_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type x(x_sexp); + Rcpp::traits::input_parameter::type time(time_sexp); + fs___FileStats__set_mtime(x, time); + return R_NilValue; +END_RCPP } #else -RcppExport SEXP _arrow_fs___FileStats__set_mtime(SEXP x_sexp, SEXP time_sexp) { - Rf_error( - "Cannot call fs___FileStats__set_mtime(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_fs___FileStats__set_mtime(SEXP x_sexp, SEXP time_sexp){ + Rf_error("Cannot call fs___FileStats__set_mtime(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // filesystem.cpp #if defined(ARROW_R_WITH_ARROW) -std::string fs___FileSelector__base_dir( - const std::shared_ptr& selector); -RcppExport SEXP _arrow_fs___FileSelector__base_dir(SEXP selector_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type selector( - selector_sexp); - return Rcpp::wrap(fs___FileSelector__base_dir(selector)); - END_RCPP +std::string fs___FileSelector__base_dir(const std::shared_ptr& selector); +RcppExport SEXP _arrow_fs___FileSelector__base_dir(SEXP selector_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type selector(selector_sexp); + return Rcpp::wrap(fs___FileSelector__base_dir(selector)); +END_RCPP } #else -RcppExport SEXP _arrow_fs___FileSelector__base_dir(SEXP selector_sexp) { - Rf_error( - "Cannot call fs___FileSelector__base_dir(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_fs___FileSelector__base_dir(SEXP selector_sexp){ + Rf_error("Cannot call fs___FileSelector__base_dir(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // filesystem.cpp #if defined(ARROW_R_WITH_ARROW) -bool fs___FileSelector__allow_non_existent( - const std::shared_ptr& selector); -RcppExport SEXP _arrow_fs___FileSelector__allow_non_existent(SEXP selector_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type selector( - selector_sexp); - return Rcpp::wrap(fs___FileSelector__allow_non_existent(selector)); - END_RCPP +bool fs___FileSelector__allow_non_existent(const std::shared_ptr& selector); +RcppExport SEXP _arrow_fs___FileSelector__allow_non_existent(SEXP selector_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type selector(selector_sexp); + return Rcpp::wrap(fs___FileSelector__allow_non_existent(selector)); +END_RCPP } #else -RcppExport SEXP _arrow_fs___FileSelector__allow_non_existent(SEXP selector_sexp) { - Rf_error( - "Cannot call fs___FileSelector__allow_non_existent(). Please use " - "arrow::install_arrow() to install required runtime libraries. "); +RcppExport SEXP _arrow_fs___FileSelector__allow_non_existent(SEXP selector_sexp){ + Rf_error("Cannot call fs___FileSelector__allow_non_existent(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // filesystem.cpp #if defined(ARROW_R_WITH_ARROW) bool fs___FileSelector__recursive(const std::shared_ptr& selector); -RcppExport SEXP _arrow_fs___FileSelector__recursive(SEXP selector_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type selector( - selector_sexp); - return Rcpp::wrap(fs___FileSelector__recursive(selector)); - END_RCPP +RcppExport SEXP _arrow_fs___FileSelector__recursive(SEXP selector_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type selector(selector_sexp); + return Rcpp::wrap(fs___FileSelector__recursive(selector)); +END_RCPP } #else -RcppExport SEXP _arrow_fs___FileSelector__recursive(SEXP selector_sexp) { - Rf_error( - "Cannot call fs___FileSelector__recursive(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_fs___FileSelector__recursive(SEXP selector_sexp){ + Rf_error("Cannot call fs___FileSelector__recursive(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // filesystem.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr fs___FileSelector__create(const std::string& base_dir, - bool allow_non_existent, - bool recursive); -RcppExport SEXP _arrow_fs___FileSelector__create(SEXP base_dir_sexp, - SEXP allow_non_existent_sexp, - SEXP recursive_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter::type base_dir(base_dir_sexp); - Rcpp::traits::input_parameter::type allow_non_existent(allow_non_existent_sexp); - Rcpp::traits::input_parameter::type recursive(recursive_sexp); - return Rcpp::wrap(fs___FileSelector__create(base_dir, allow_non_existent, recursive)); - END_RCPP +std::shared_ptr fs___FileSelector__create(const std::string& base_dir, bool allow_non_existent, bool recursive); +RcppExport SEXP _arrow_fs___FileSelector__create(SEXP base_dir_sexp, SEXP allow_non_existent_sexp, SEXP recursive_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter::type base_dir(base_dir_sexp); + Rcpp::traits::input_parameter::type allow_non_existent(allow_non_existent_sexp); + Rcpp::traits::input_parameter::type recursive(recursive_sexp); + return Rcpp::wrap(fs___FileSelector__create(base_dir, allow_non_existent, recursive)); +END_RCPP } #else -RcppExport SEXP _arrow_fs___FileSelector__create(SEXP base_dir_sexp, - SEXP allow_non_existent_sexp, - SEXP recursive_sexp) { - Rf_error( - "Cannot call fs___FileSelector__create(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_fs___FileSelector__create(SEXP base_dir_sexp, SEXP allow_non_existent_sexp, SEXP recursive_sexp){ + Rf_error("Cannot call fs___FileSelector__create(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // filesystem.cpp #if defined(ARROW_R_WITH_ARROW) -std::vector> fs___FileSystem__GetTargetStats_Paths( - const std::shared_ptr& file_system, - const std::vector& paths); -RcppExport SEXP _arrow_fs___FileSystem__GetTargetStats_Paths(SEXP file_system_sexp, - SEXP paths_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type file_system( - file_system_sexp); - Rcpp::traits::input_parameter&>::type paths(paths_sexp); - return Rcpp::wrap(fs___FileSystem__GetTargetStats_Paths(file_system, paths)); - END_RCPP +std::vector> fs___FileSystem__GetTargetStats_Paths(const std::shared_ptr& file_system, const std::vector& paths); +RcppExport SEXP _arrow_fs___FileSystem__GetTargetStats_Paths(SEXP file_system_sexp, SEXP paths_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type file_system(file_system_sexp); + Rcpp::traits::input_parameter&>::type paths(paths_sexp); + return Rcpp::wrap(fs___FileSystem__GetTargetStats_Paths(file_system, paths)); +END_RCPP } #else -RcppExport SEXP _arrow_fs___FileSystem__GetTargetStats_Paths(SEXP file_system_sexp, - SEXP paths_sexp) { - Rf_error( - "Cannot call fs___FileSystem__GetTargetStats_Paths(). Please use " - "arrow::install_arrow() to install required runtime libraries. "); +RcppExport SEXP _arrow_fs___FileSystem__GetTargetStats_Paths(SEXP file_system_sexp, SEXP paths_sexp){ + Rf_error("Cannot call fs___FileSystem__GetTargetStats_Paths(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // filesystem.cpp #if defined(ARROW_R_WITH_ARROW) -std::vector> fs___FileSystem__GetTargetStats_FileSelector( - const std::shared_ptr& file_system, - const std::shared_ptr& selector); -RcppExport SEXP _arrow_fs___FileSystem__GetTargetStats_FileSelector(SEXP file_system_sexp, - SEXP selector_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type file_system( - file_system_sexp); - Rcpp::traits::input_parameter&>::type selector( - selector_sexp); - return Rcpp::wrap(fs___FileSystem__GetTargetStats_FileSelector(file_system, selector)); - END_RCPP +std::vector> fs___FileSystem__GetTargetStats_FileSelector(const std::shared_ptr& file_system, const std::shared_ptr& selector); +RcppExport SEXP _arrow_fs___FileSystem__GetTargetStats_FileSelector(SEXP file_system_sexp, SEXP selector_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type file_system(file_system_sexp); + Rcpp::traits::input_parameter&>::type selector(selector_sexp); + return Rcpp::wrap(fs___FileSystem__GetTargetStats_FileSelector(file_system, selector)); +END_RCPP } #else -RcppExport SEXP _arrow_fs___FileSystem__GetTargetStats_FileSelector(SEXP file_system_sexp, - SEXP selector_sexp) { - Rf_error( - "Cannot call fs___FileSystem__GetTargetStats_FileSelector(). Please use " - "arrow::install_arrow() to install required runtime libraries. "); +RcppExport SEXP _arrow_fs___FileSystem__GetTargetStats_FileSelector(SEXP file_system_sexp, SEXP selector_sexp){ + Rf_error("Cannot call fs___FileSystem__GetTargetStats_FileSelector(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // filesystem.cpp #if defined(ARROW_R_WITH_ARROW) -void fs___FileSystem__CreateDir(const std::shared_ptr& file_system, - const std::string& path, bool recursive); -RcppExport SEXP _arrow_fs___FileSystem__CreateDir(SEXP file_system_sexp, SEXP path_sexp, - SEXP recursive_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type file_system( - file_system_sexp); - Rcpp::traits::input_parameter::type path(path_sexp); - Rcpp::traits::input_parameter::type recursive(recursive_sexp); - fs___FileSystem__CreateDir(file_system, path, recursive); - return R_NilValue; - END_RCPP +void fs___FileSystem__CreateDir(const std::shared_ptr& file_system, const std::string& path, bool recursive); +RcppExport SEXP _arrow_fs___FileSystem__CreateDir(SEXP file_system_sexp, SEXP path_sexp, SEXP recursive_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type file_system(file_system_sexp); + Rcpp::traits::input_parameter::type path(path_sexp); + Rcpp::traits::input_parameter::type recursive(recursive_sexp); + fs___FileSystem__CreateDir(file_system, path, recursive); + return R_NilValue; +END_RCPP } #else -RcppExport SEXP _arrow_fs___FileSystem__CreateDir(SEXP file_system_sexp, SEXP path_sexp, - SEXP recursive_sexp) { - Rf_error( - "Cannot call fs___FileSystem__CreateDir(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_fs___FileSystem__CreateDir(SEXP file_system_sexp, SEXP path_sexp, SEXP recursive_sexp){ + Rf_error("Cannot call fs___FileSystem__CreateDir(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // filesystem.cpp #if defined(ARROW_R_WITH_ARROW) -void fs___FileSystem__DeleteDir(const std::shared_ptr& file_system, - const std::string& path); -RcppExport SEXP _arrow_fs___FileSystem__DeleteDir(SEXP file_system_sexp, SEXP path_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type file_system( - file_system_sexp); - Rcpp::traits::input_parameter::type path(path_sexp); - fs___FileSystem__DeleteDir(file_system, path); - return R_NilValue; - END_RCPP +void fs___FileSystem__DeleteDir(const std::shared_ptr& file_system, const std::string& path); +RcppExport SEXP _arrow_fs___FileSystem__DeleteDir(SEXP file_system_sexp, SEXP path_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type file_system(file_system_sexp); + Rcpp::traits::input_parameter::type path(path_sexp); + fs___FileSystem__DeleteDir(file_system, path); + return R_NilValue; +END_RCPP } #else -RcppExport SEXP _arrow_fs___FileSystem__DeleteDir(SEXP file_system_sexp, SEXP path_sexp) { - Rf_error( - "Cannot call fs___FileSystem__DeleteDir(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_fs___FileSystem__DeleteDir(SEXP file_system_sexp, SEXP path_sexp){ + Rf_error("Cannot call fs___FileSystem__DeleteDir(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // filesystem.cpp #if defined(ARROW_R_WITH_ARROW) -void fs___FileSystem__DeleteDirContents( - const std::shared_ptr& file_system, const std::string& path); -RcppExport SEXP _arrow_fs___FileSystem__DeleteDirContents(SEXP file_system_sexp, - SEXP path_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type file_system( - file_system_sexp); - Rcpp::traits::input_parameter::type path(path_sexp); - fs___FileSystem__DeleteDirContents(file_system, path); - return R_NilValue; - END_RCPP +void fs___FileSystem__DeleteDirContents(const std::shared_ptr& file_system, const std::string& path); +RcppExport SEXP _arrow_fs___FileSystem__DeleteDirContents(SEXP file_system_sexp, SEXP path_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type file_system(file_system_sexp); + Rcpp::traits::input_parameter::type path(path_sexp); + fs___FileSystem__DeleteDirContents(file_system, path); + return R_NilValue; +END_RCPP } #else -RcppExport SEXP _arrow_fs___FileSystem__DeleteDirContents(SEXP file_system_sexp, - SEXP path_sexp) { - Rf_error( - "Cannot call fs___FileSystem__DeleteDirContents(). Please use " - "arrow::install_arrow() to install required runtime libraries. "); +RcppExport SEXP _arrow_fs___FileSystem__DeleteDirContents(SEXP file_system_sexp, SEXP path_sexp){ + Rf_error("Cannot call fs___FileSystem__DeleteDirContents(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // filesystem.cpp #if defined(ARROW_R_WITH_ARROW) -void fs___FileSystem__DeleteFile(const std::shared_ptr& file_system, - const std::string& path); -RcppExport SEXP _arrow_fs___FileSystem__DeleteFile(SEXP file_system_sexp, - SEXP path_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type file_system( - file_system_sexp); - Rcpp::traits::input_parameter::type path(path_sexp); - fs___FileSystem__DeleteFile(file_system, path); - return R_NilValue; - END_RCPP +void fs___FileSystem__DeleteFile(const std::shared_ptr& file_system, const std::string& path); +RcppExport SEXP _arrow_fs___FileSystem__DeleteFile(SEXP file_system_sexp, SEXP path_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type file_system(file_system_sexp); + Rcpp::traits::input_parameter::type path(path_sexp); + fs___FileSystem__DeleteFile(file_system, path); + return R_NilValue; +END_RCPP } #else -RcppExport SEXP _arrow_fs___FileSystem__DeleteFile(SEXP file_system_sexp, - SEXP path_sexp) { - Rf_error( - "Cannot call fs___FileSystem__DeleteFile(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_fs___FileSystem__DeleteFile(SEXP file_system_sexp, SEXP path_sexp){ + Rf_error("Cannot call fs___FileSystem__DeleteFile(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // filesystem.cpp #if defined(ARROW_R_WITH_ARROW) -void fs___FileSystem__DeleteFiles(const std::shared_ptr& file_system, - const std::vector& paths); -RcppExport SEXP _arrow_fs___FileSystem__DeleteFiles(SEXP file_system_sexp, - SEXP paths_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type file_system( - file_system_sexp); - Rcpp::traits::input_parameter&>::type paths(paths_sexp); - fs___FileSystem__DeleteFiles(file_system, paths); - return R_NilValue; - END_RCPP +void fs___FileSystem__DeleteFiles(const std::shared_ptr& file_system, const std::vector& paths); +RcppExport SEXP _arrow_fs___FileSystem__DeleteFiles(SEXP file_system_sexp, SEXP paths_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type file_system(file_system_sexp); + Rcpp::traits::input_parameter&>::type paths(paths_sexp); + fs___FileSystem__DeleteFiles(file_system, paths); + return R_NilValue; +END_RCPP } #else -RcppExport SEXP _arrow_fs___FileSystem__DeleteFiles(SEXP file_system_sexp, - SEXP paths_sexp) { - Rf_error( - "Cannot call fs___FileSystem__DeleteFiles(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_fs___FileSystem__DeleteFiles(SEXP file_system_sexp, SEXP paths_sexp){ + Rf_error("Cannot call fs___FileSystem__DeleteFiles(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // filesystem.cpp #if defined(ARROW_R_WITH_ARROW) -void fs___FileSystem__Move(const std::shared_ptr& file_system, - const std::string& src, const std::string& dest); -RcppExport SEXP _arrow_fs___FileSystem__Move(SEXP file_system_sexp, SEXP src_sexp, - SEXP dest_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type file_system( - file_system_sexp); - Rcpp::traits::input_parameter::type src(src_sexp); - Rcpp::traits::input_parameter::type dest(dest_sexp); - fs___FileSystem__Move(file_system, src, dest); - return R_NilValue; - END_RCPP +void fs___FileSystem__Move(const std::shared_ptr& file_system, const std::string& src, const std::string& dest); +RcppExport SEXP _arrow_fs___FileSystem__Move(SEXP file_system_sexp, SEXP src_sexp, SEXP dest_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type file_system(file_system_sexp); + Rcpp::traits::input_parameter::type src(src_sexp); + Rcpp::traits::input_parameter::type dest(dest_sexp); + fs___FileSystem__Move(file_system, src, dest); + return R_NilValue; +END_RCPP } #else -RcppExport SEXP _arrow_fs___FileSystem__Move(SEXP file_system_sexp, SEXP src_sexp, - SEXP dest_sexp) { - Rf_error( - "Cannot call fs___FileSystem__Move(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_fs___FileSystem__Move(SEXP file_system_sexp, SEXP src_sexp, SEXP dest_sexp){ + Rf_error("Cannot call fs___FileSystem__Move(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // filesystem.cpp #if defined(ARROW_R_WITH_ARROW) -void fs___FileSystem__CopyFile(const std::shared_ptr& file_system, - const std::string& src, const std::string& dest); -RcppExport SEXP _arrow_fs___FileSystem__CopyFile(SEXP file_system_sexp, SEXP src_sexp, - SEXP dest_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type file_system( - file_system_sexp); - Rcpp::traits::input_parameter::type src(src_sexp); - Rcpp::traits::input_parameter::type dest(dest_sexp); - fs___FileSystem__CopyFile(file_system, src, dest); - return R_NilValue; - END_RCPP +void fs___FileSystem__CopyFile(const std::shared_ptr& file_system, const std::string& src, const std::string& dest); +RcppExport SEXP _arrow_fs___FileSystem__CopyFile(SEXP file_system_sexp, SEXP src_sexp, SEXP dest_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type file_system(file_system_sexp); + Rcpp::traits::input_parameter::type src(src_sexp); + Rcpp::traits::input_parameter::type dest(dest_sexp); + fs___FileSystem__CopyFile(file_system, src, dest); + return R_NilValue; +END_RCPP } #else -RcppExport SEXP _arrow_fs___FileSystem__CopyFile(SEXP file_system_sexp, SEXP src_sexp, - SEXP dest_sexp) { - Rf_error( - "Cannot call fs___FileSystem__CopyFile(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_fs___FileSystem__CopyFile(SEXP file_system_sexp, SEXP src_sexp, SEXP dest_sexp){ + Rf_error("Cannot call fs___FileSystem__CopyFile(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // filesystem.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr fs___FileSystem__OpenInputStream( - const std::shared_ptr& file_system, const std::string& path); -RcppExport SEXP _arrow_fs___FileSystem__OpenInputStream(SEXP file_system_sexp, - SEXP path_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type file_system( - file_system_sexp); - Rcpp::traits::input_parameter::type path(path_sexp); - return Rcpp::wrap(fs___FileSystem__OpenInputStream(file_system, path)); - END_RCPP +std::shared_ptr fs___FileSystem__OpenInputStream(const std::shared_ptr& file_system, const std::string& path); +RcppExport SEXP _arrow_fs___FileSystem__OpenInputStream(SEXP file_system_sexp, SEXP path_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type file_system(file_system_sexp); + Rcpp::traits::input_parameter::type path(path_sexp); + return Rcpp::wrap(fs___FileSystem__OpenInputStream(file_system, path)); +END_RCPP } #else -RcppExport SEXP _arrow_fs___FileSystem__OpenInputStream(SEXP file_system_sexp, - SEXP path_sexp) { - Rf_error( - "Cannot call fs___FileSystem__OpenInputStream(). Please use arrow::install_arrow() " - "to install required runtime libraries. "); +RcppExport SEXP _arrow_fs___FileSystem__OpenInputStream(SEXP file_system_sexp, SEXP path_sexp){ + Rf_error("Cannot call fs___FileSystem__OpenInputStream(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // filesystem.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr fs___FileSystem__OpenInputFile( - const std::shared_ptr& file_system, const std::string& path); -RcppExport SEXP _arrow_fs___FileSystem__OpenInputFile(SEXP file_system_sexp, - SEXP path_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type file_system( - file_system_sexp); - Rcpp::traits::input_parameter::type path(path_sexp); - return Rcpp::wrap(fs___FileSystem__OpenInputFile(file_system, path)); - END_RCPP +std::shared_ptr fs___FileSystem__OpenInputFile(const std::shared_ptr& file_system, const std::string& path); +RcppExport SEXP _arrow_fs___FileSystem__OpenInputFile(SEXP file_system_sexp, SEXP path_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type file_system(file_system_sexp); + Rcpp::traits::input_parameter::type path(path_sexp); + return Rcpp::wrap(fs___FileSystem__OpenInputFile(file_system, path)); +END_RCPP } #else -RcppExport SEXP _arrow_fs___FileSystem__OpenInputFile(SEXP file_system_sexp, - SEXP path_sexp) { - Rf_error( - "Cannot call fs___FileSystem__OpenInputFile(). Please use arrow::install_arrow() " - "to install required runtime libraries. "); +RcppExport SEXP _arrow_fs___FileSystem__OpenInputFile(SEXP file_system_sexp, SEXP path_sexp){ + Rf_error("Cannot call fs___FileSystem__OpenInputFile(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // filesystem.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr fs___FileSystem__OpenOutputStream( - const std::shared_ptr& file_system, const std::string& path); -RcppExport SEXP _arrow_fs___FileSystem__OpenOutputStream(SEXP file_system_sexp, - SEXP path_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type file_system( - file_system_sexp); - Rcpp::traits::input_parameter::type path(path_sexp); - return Rcpp::wrap(fs___FileSystem__OpenOutputStream(file_system, path)); - END_RCPP +std::shared_ptr fs___FileSystem__OpenOutputStream(const std::shared_ptr& file_system, const std::string& path); +RcppExport SEXP _arrow_fs___FileSystem__OpenOutputStream(SEXP file_system_sexp, SEXP path_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type file_system(file_system_sexp); + Rcpp::traits::input_parameter::type path(path_sexp); + return Rcpp::wrap(fs___FileSystem__OpenOutputStream(file_system, path)); +END_RCPP } #else -RcppExport SEXP _arrow_fs___FileSystem__OpenOutputStream(SEXP file_system_sexp, - SEXP path_sexp) { - Rf_error( - "Cannot call fs___FileSystem__OpenOutputStream(). Please use " - "arrow::install_arrow() to install required runtime libraries. "); +RcppExport SEXP _arrow_fs___FileSystem__OpenOutputStream(SEXP file_system_sexp, SEXP path_sexp){ + Rf_error("Cannot call fs___FileSystem__OpenOutputStream(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // filesystem.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr fs___FileSystem__OpenAppendStream( - const std::shared_ptr& file_system, const std::string& path); -RcppExport SEXP _arrow_fs___FileSystem__OpenAppendStream(SEXP file_system_sexp, - SEXP path_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type file_system( - file_system_sexp); - Rcpp::traits::input_parameter::type path(path_sexp); - return Rcpp::wrap(fs___FileSystem__OpenAppendStream(file_system, path)); - END_RCPP +std::shared_ptr fs___FileSystem__OpenAppendStream(const std::shared_ptr& file_system, const std::string& path); +RcppExport SEXP _arrow_fs___FileSystem__OpenAppendStream(SEXP file_system_sexp, SEXP path_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type file_system(file_system_sexp); + Rcpp::traits::input_parameter::type path(path_sexp); + return Rcpp::wrap(fs___FileSystem__OpenAppendStream(file_system, path)); +END_RCPP } #else -RcppExport SEXP _arrow_fs___FileSystem__OpenAppendStream(SEXP file_system_sexp, - SEXP path_sexp) { - Rf_error( - "Cannot call fs___FileSystem__OpenAppendStream(). Please use " - "arrow::install_arrow() to install required runtime libraries. "); +RcppExport SEXP _arrow_fs___FileSystem__OpenAppendStream(SEXP file_system_sexp, SEXP path_sexp){ + Rf_error("Cannot call fs___FileSystem__OpenAppendStream(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // filesystem.cpp #if defined(ARROW_R_WITH_ARROW) std::shared_ptr fs___LocalFileSystem__create(); -RcppExport SEXP _arrow_fs___LocalFileSystem__create() { - BEGIN_RCPP - return Rcpp::wrap(fs___LocalFileSystem__create()); - END_RCPP +RcppExport SEXP _arrow_fs___LocalFileSystem__create(){ +BEGIN_RCPP + return Rcpp::wrap(fs___LocalFileSystem__create()); +END_RCPP } #else -RcppExport SEXP _arrow_fs___LocalFileSystem__create() { - Rf_error( - "Cannot call fs___LocalFileSystem__create(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_fs___LocalFileSystem__create(){ + Rf_error("Cannot call fs___LocalFileSystem__create(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // filesystem.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr fs___SubTreeFileSystem__create( - const std::string& base_path, const std::shared_ptr& base_fs); -RcppExport SEXP _arrow_fs___SubTreeFileSystem__create(SEXP base_path_sexp, - SEXP base_fs_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter::type base_path(base_path_sexp); - Rcpp::traits::input_parameter&>::type base_fs( - base_fs_sexp); - return Rcpp::wrap(fs___SubTreeFileSystem__create(base_path, base_fs)); - END_RCPP +std::shared_ptr fs___SubTreeFileSystem__create(const std::string& base_path, const std::shared_ptr& base_fs); +RcppExport SEXP _arrow_fs___SubTreeFileSystem__create(SEXP base_path_sexp, SEXP base_fs_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter::type base_path(base_path_sexp); + Rcpp::traits::input_parameter&>::type base_fs(base_fs_sexp); + return Rcpp::wrap(fs___SubTreeFileSystem__create(base_path, base_fs)); +END_RCPP } #else -RcppExport SEXP _arrow_fs___SubTreeFileSystem__create(SEXP base_path_sexp, - SEXP base_fs_sexp) { - Rf_error( - "Cannot call fs___SubTreeFileSystem__create(). Please use arrow::install_arrow() " - "to install required runtime libraries. "); +RcppExport SEXP _arrow_fs___SubTreeFileSystem__create(SEXP base_path_sexp, SEXP base_fs_sexp){ + Rf_error("Cannot call fs___SubTreeFileSystem__create(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // io.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr io___Readable__Read( - const std::shared_ptr& x, int64_t nbytes); -RcppExport SEXP _arrow_io___Readable__Read(SEXP x_sexp, SEXP nbytes_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type x( - x_sexp); - Rcpp::traits::input_parameter::type nbytes(nbytes_sexp); - return Rcpp::wrap(io___Readable__Read(x, nbytes)); - END_RCPP +std::shared_ptr io___Readable__Read(const std::shared_ptr& x, int64_t nbytes); +RcppExport SEXP _arrow_io___Readable__Read(SEXP x_sexp, SEXP nbytes_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type x(x_sexp); + Rcpp::traits::input_parameter::type nbytes(nbytes_sexp); + return Rcpp::wrap(io___Readable__Read(x, nbytes)); +END_RCPP } #else -RcppExport SEXP _arrow_io___Readable__Read(SEXP x_sexp, SEXP nbytes_sexp) { - Rf_error( - "Cannot call io___Readable__Read(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_io___Readable__Read(SEXP x_sexp, SEXP nbytes_sexp){ + Rf_error("Cannot call io___Readable__Read(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // io.cpp #if defined(ARROW_R_WITH_ARROW) void io___InputStream__Close(const std::shared_ptr& x); -RcppExport SEXP _arrow_io___InputStream__Close(SEXP x_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type x( - x_sexp); - io___InputStream__Close(x); - return R_NilValue; - END_RCPP +RcppExport SEXP _arrow_io___InputStream__Close(SEXP x_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type x(x_sexp); + io___InputStream__Close(x); + return R_NilValue; +END_RCPP } #else -RcppExport SEXP _arrow_io___InputStream__Close(SEXP x_sexp) { - Rf_error( - "Cannot call io___InputStream__Close(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_io___InputStream__Close(SEXP x_sexp){ + Rf_error("Cannot call io___InputStream__Close(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // io.cpp #if defined(ARROW_R_WITH_ARROW) void io___OutputStream__Close(const std::shared_ptr& x); -RcppExport SEXP _arrow_io___OutputStream__Close(SEXP x_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type x( - x_sexp); - io___OutputStream__Close(x); - return R_NilValue; - END_RCPP +RcppExport SEXP _arrow_io___OutputStream__Close(SEXP x_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type x(x_sexp); + io___OutputStream__Close(x); + return R_NilValue; +END_RCPP } #else -RcppExport SEXP _arrow_io___OutputStream__Close(SEXP x_sexp) { - Rf_error( - "Cannot call io___OutputStream__Close(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_io___OutputStream__Close(SEXP x_sexp){ + Rf_error("Cannot call io___OutputStream__Close(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // io.cpp #if defined(ARROW_R_WITH_ARROW) -int64_t io___RandomAccessFile__GetSize( - const std::shared_ptr& x); -RcppExport SEXP _arrow_io___RandomAccessFile__GetSize(SEXP x_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type - x(x_sexp); - return Rcpp::wrap(io___RandomAccessFile__GetSize(x)); - END_RCPP +int64_t io___RandomAccessFile__GetSize(const std::shared_ptr& x); +RcppExport SEXP _arrow_io___RandomAccessFile__GetSize(SEXP x_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type x(x_sexp); + return Rcpp::wrap(io___RandomAccessFile__GetSize(x)); +END_RCPP } #else -RcppExport SEXP _arrow_io___RandomAccessFile__GetSize(SEXP x_sexp) { - Rf_error( - "Cannot call io___RandomAccessFile__GetSize(). Please use arrow::install_arrow() " - "to install required runtime libraries. "); +RcppExport SEXP _arrow_io___RandomAccessFile__GetSize(SEXP x_sexp){ + Rf_error("Cannot call io___RandomAccessFile__GetSize(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // io.cpp #if defined(ARROW_R_WITH_ARROW) -bool io___RandomAccessFile__supports_zero_copy( - const std::shared_ptr& x); -RcppExport SEXP _arrow_io___RandomAccessFile__supports_zero_copy(SEXP x_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type - x(x_sexp); - return Rcpp::wrap(io___RandomAccessFile__supports_zero_copy(x)); - END_RCPP +bool io___RandomAccessFile__supports_zero_copy(const std::shared_ptr& x); +RcppExport SEXP _arrow_io___RandomAccessFile__supports_zero_copy(SEXP x_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type x(x_sexp); + return Rcpp::wrap(io___RandomAccessFile__supports_zero_copy(x)); +END_RCPP } #else -RcppExport SEXP _arrow_io___RandomAccessFile__supports_zero_copy(SEXP x_sexp) { - Rf_error( - "Cannot call io___RandomAccessFile__supports_zero_copy(). Please use " - "arrow::install_arrow() to install required runtime libraries. "); +RcppExport SEXP _arrow_io___RandomAccessFile__supports_zero_copy(SEXP x_sexp){ + Rf_error("Cannot call io___RandomAccessFile__supports_zero_copy(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // io.cpp #if defined(ARROW_R_WITH_ARROW) -void io___RandomAccessFile__Seek(const std::shared_ptr& x, - int64_t position); -RcppExport SEXP _arrow_io___RandomAccessFile__Seek(SEXP x_sexp, SEXP position_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type - x(x_sexp); - Rcpp::traits::input_parameter::type position(position_sexp); - io___RandomAccessFile__Seek(x, position); - return R_NilValue; - END_RCPP +void io___RandomAccessFile__Seek(const std::shared_ptr& x, int64_t position); +RcppExport SEXP _arrow_io___RandomAccessFile__Seek(SEXP x_sexp, SEXP position_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type x(x_sexp); + Rcpp::traits::input_parameter::type position(position_sexp); + io___RandomAccessFile__Seek(x, position); + return R_NilValue; +END_RCPP } #else -RcppExport SEXP _arrow_io___RandomAccessFile__Seek(SEXP x_sexp, SEXP position_sexp) { - Rf_error( - "Cannot call io___RandomAccessFile__Seek(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_io___RandomAccessFile__Seek(SEXP x_sexp, SEXP position_sexp){ + Rf_error("Cannot call io___RandomAccessFile__Seek(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // io.cpp #if defined(ARROW_R_WITH_ARROW) -int64_t io___RandomAccessFile__Tell( - const std::shared_ptr& x); -RcppExport SEXP _arrow_io___RandomAccessFile__Tell(SEXP x_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type - x(x_sexp); - return Rcpp::wrap(io___RandomAccessFile__Tell(x)); - END_RCPP +int64_t io___RandomAccessFile__Tell(const std::shared_ptr& x); +RcppExport SEXP _arrow_io___RandomAccessFile__Tell(SEXP x_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type x(x_sexp); + return Rcpp::wrap(io___RandomAccessFile__Tell(x)); +END_RCPP } #else -RcppExport SEXP _arrow_io___RandomAccessFile__Tell(SEXP x_sexp) { - Rf_error( - "Cannot call io___RandomAccessFile__Tell(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_io___RandomAccessFile__Tell(SEXP x_sexp){ + Rf_error("Cannot call io___RandomAccessFile__Tell(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // io.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr io___RandomAccessFile__Read0( - const std::shared_ptr& x); -RcppExport SEXP _arrow_io___RandomAccessFile__Read0(SEXP x_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type - x(x_sexp); - return Rcpp::wrap(io___RandomAccessFile__Read0(x)); - END_RCPP +std::shared_ptr io___RandomAccessFile__Read0(const std::shared_ptr& x); +RcppExport SEXP _arrow_io___RandomAccessFile__Read0(SEXP x_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type x(x_sexp); + return Rcpp::wrap(io___RandomAccessFile__Read0(x)); +END_RCPP } #else -RcppExport SEXP _arrow_io___RandomAccessFile__Read0(SEXP x_sexp) { - Rf_error( - "Cannot call io___RandomAccessFile__Read0(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_io___RandomAccessFile__Read0(SEXP x_sexp){ + Rf_error("Cannot call io___RandomAccessFile__Read0(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // io.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr io___RandomAccessFile__ReadAt( - const std::shared_ptr& x, int64_t position, - int64_t nbytes); -RcppExport SEXP _arrow_io___RandomAccessFile__ReadAt(SEXP x_sexp, SEXP position_sexp, - SEXP nbytes_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type - x(x_sexp); - Rcpp::traits::input_parameter::type position(position_sexp); - Rcpp::traits::input_parameter::type nbytes(nbytes_sexp); - return Rcpp::wrap(io___RandomAccessFile__ReadAt(x, position, nbytes)); - END_RCPP +std::shared_ptr io___RandomAccessFile__ReadAt(const std::shared_ptr& x, int64_t position, int64_t nbytes); +RcppExport SEXP _arrow_io___RandomAccessFile__ReadAt(SEXP x_sexp, SEXP position_sexp, SEXP nbytes_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type x(x_sexp); + Rcpp::traits::input_parameter::type position(position_sexp); + Rcpp::traits::input_parameter::type nbytes(nbytes_sexp); + return Rcpp::wrap(io___RandomAccessFile__ReadAt(x, position, nbytes)); +END_RCPP } #else -RcppExport SEXP _arrow_io___RandomAccessFile__ReadAt(SEXP x_sexp, SEXP position_sexp, - SEXP nbytes_sexp) { - Rf_error( - "Cannot call io___RandomAccessFile__ReadAt(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_io___RandomAccessFile__ReadAt(SEXP x_sexp, SEXP position_sexp, SEXP nbytes_sexp){ + Rf_error("Cannot call io___RandomAccessFile__ReadAt(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // io.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr io___MemoryMappedFile__Create( - const std::string& path, int64_t size); -RcppExport SEXP _arrow_io___MemoryMappedFile__Create(SEXP path_sexp, SEXP size_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter::type path(path_sexp); - Rcpp::traits::input_parameter::type size(size_sexp); - return Rcpp::wrap(io___MemoryMappedFile__Create(path, size)); - END_RCPP +std::shared_ptr io___MemoryMappedFile__Create(const std::string& path, int64_t size); +RcppExport SEXP _arrow_io___MemoryMappedFile__Create(SEXP path_sexp, SEXP size_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter::type path(path_sexp); + Rcpp::traits::input_parameter::type size(size_sexp); + return Rcpp::wrap(io___MemoryMappedFile__Create(path, size)); +END_RCPP } #else -RcppExport SEXP _arrow_io___MemoryMappedFile__Create(SEXP path_sexp, SEXP size_sexp) { - Rf_error( - "Cannot call io___MemoryMappedFile__Create(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_io___MemoryMappedFile__Create(SEXP path_sexp, SEXP size_sexp){ + Rf_error("Cannot call io___MemoryMappedFile__Create(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // io.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr io___MemoryMappedFile__Open( - const std::string& path, arrow::io::FileMode::type mode); -RcppExport SEXP _arrow_io___MemoryMappedFile__Open(SEXP path_sexp, SEXP mode_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter::type path(path_sexp); - Rcpp::traits::input_parameter::type mode(mode_sexp); - return Rcpp::wrap(io___MemoryMappedFile__Open(path, mode)); - END_RCPP +std::shared_ptr io___MemoryMappedFile__Open(const std::string& path, arrow::io::FileMode::type mode); +RcppExport SEXP _arrow_io___MemoryMappedFile__Open(SEXP path_sexp, SEXP mode_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter::type path(path_sexp); + Rcpp::traits::input_parameter::type mode(mode_sexp); + return Rcpp::wrap(io___MemoryMappedFile__Open(path, mode)); +END_RCPP } #else -RcppExport SEXP _arrow_io___MemoryMappedFile__Open(SEXP path_sexp, SEXP mode_sexp) { - Rf_error( - "Cannot call io___MemoryMappedFile__Open(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_io___MemoryMappedFile__Open(SEXP path_sexp, SEXP mode_sexp){ + Rf_error("Cannot call io___MemoryMappedFile__Open(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // io.cpp #if defined(ARROW_R_WITH_ARROW) -void io___MemoryMappedFile__Resize(const std::shared_ptr& x, - int64_t size); -RcppExport SEXP _arrow_io___MemoryMappedFile__Resize(SEXP x_sexp, SEXP size_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type - x(x_sexp); - Rcpp::traits::input_parameter::type size(size_sexp); - io___MemoryMappedFile__Resize(x, size); - return R_NilValue; - END_RCPP +void io___MemoryMappedFile__Resize(const std::shared_ptr& x, int64_t size); +RcppExport SEXP _arrow_io___MemoryMappedFile__Resize(SEXP x_sexp, SEXP size_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type x(x_sexp); + Rcpp::traits::input_parameter::type size(size_sexp); + io___MemoryMappedFile__Resize(x, size); + return R_NilValue; +END_RCPP } #else -RcppExport SEXP _arrow_io___MemoryMappedFile__Resize(SEXP x_sexp, SEXP size_sexp) { - Rf_error( - "Cannot call io___MemoryMappedFile__Resize(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_io___MemoryMappedFile__Resize(SEXP x_sexp, SEXP size_sexp){ + Rf_error("Cannot call io___MemoryMappedFile__Resize(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // io.cpp #if defined(ARROW_R_WITH_ARROW) std::shared_ptr io___ReadableFile__Open(const std::string& path); -RcppExport SEXP _arrow_io___ReadableFile__Open(SEXP path_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter::type path(path_sexp); - return Rcpp::wrap(io___ReadableFile__Open(path)); - END_RCPP +RcppExport SEXP _arrow_io___ReadableFile__Open(SEXP path_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter::type path(path_sexp); + return Rcpp::wrap(io___ReadableFile__Open(path)); +END_RCPP } #else -RcppExport SEXP _arrow_io___ReadableFile__Open(SEXP path_sexp) { - Rf_error( - "Cannot call io___ReadableFile__Open(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_io___ReadableFile__Open(SEXP path_sexp){ + Rf_error("Cannot call io___ReadableFile__Open(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // io.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr io___BufferReader__initialize( - const std::shared_ptr& buffer); -RcppExport SEXP _arrow_io___BufferReader__initialize(SEXP buffer_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type buffer( - buffer_sexp); - return Rcpp::wrap(io___BufferReader__initialize(buffer)); - END_RCPP +std::shared_ptr io___BufferReader__initialize(const std::shared_ptr& buffer); +RcppExport SEXP _arrow_io___BufferReader__initialize(SEXP buffer_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type buffer(buffer_sexp); + return Rcpp::wrap(io___BufferReader__initialize(buffer)); +END_RCPP } #else -RcppExport SEXP _arrow_io___BufferReader__initialize(SEXP buffer_sexp) { - Rf_error( - "Cannot call io___BufferReader__initialize(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_io___BufferReader__initialize(SEXP buffer_sexp){ + Rf_error("Cannot call io___BufferReader__initialize(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // io.cpp #if defined(ARROW_R_WITH_ARROW) -void io___Writable__write(const std::shared_ptr& stream, - const std::shared_ptr& buf); -RcppExport SEXP _arrow_io___Writable__write(SEXP stream_sexp, SEXP buf_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type stream( - stream_sexp); - Rcpp::traits::input_parameter&>::type buf( - buf_sexp); - io___Writable__write(stream, buf); - return R_NilValue; - END_RCPP +void io___Writable__write(const std::shared_ptr& stream, const std::shared_ptr& buf); +RcppExport SEXP _arrow_io___Writable__write(SEXP stream_sexp, SEXP buf_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type stream(stream_sexp); + Rcpp::traits::input_parameter&>::type buf(buf_sexp); + io___Writable__write(stream, buf); + return R_NilValue; +END_RCPP } #else -RcppExport SEXP _arrow_io___Writable__write(SEXP stream_sexp, SEXP buf_sexp) { - Rf_error( - "Cannot call io___Writable__write(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_io___Writable__write(SEXP stream_sexp, SEXP buf_sexp){ + Rf_error("Cannot call io___Writable__write(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // io.cpp #if defined(ARROW_R_WITH_ARROW) int64_t io___OutputStream__Tell(const std::shared_ptr& stream); -RcppExport SEXP _arrow_io___OutputStream__Tell(SEXP stream_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type - stream(stream_sexp); - return Rcpp::wrap(io___OutputStream__Tell(stream)); - END_RCPP +RcppExport SEXP _arrow_io___OutputStream__Tell(SEXP stream_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type stream(stream_sexp); + return Rcpp::wrap(io___OutputStream__Tell(stream)); +END_RCPP } #else -RcppExport SEXP _arrow_io___OutputStream__Tell(SEXP stream_sexp) { - Rf_error( - "Cannot call io___OutputStream__Tell(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_io___OutputStream__Tell(SEXP stream_sexp){ + Rf_error("Cannot call io___OutputStream__Tell(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // io.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr io___FileOutputStream__Open( - const std::string& path); -RcppExport SEXP _arrow_io___FileOutputStream__Open(SEXP path_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter::type path(path_sexp); - return Rcpp::wrap(io___FileOutputStream__Open(path)); - END_RCPP +std::shared_ptr io___FileOutputStream__Open(const std::string& path); +RcppExport SEXP _arrow_io___FileOutputStream__Open(SEXP path_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter::type path(path_sexp); + return Rcpp::wrap(io___FileOutputStream__Open(path)); +END_RCPP } #else -RcppExport SEXP _arrow_io___FileOutputStream__Open(SEXP path_sexp) { - Rf_error( - "Cannot call io___FileOutputStream__Open(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_io___FileOutputStream__Open(SEXP path_sexp){ + Rf_error("Cannot call io___FileOutputStream__Open(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // io.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr io___BufferOutputStream__Create( - int64_t initial_capacity); -RcppExport SEXP _arrow_io___BufferOutputStream__Create(SEXP initial_capacity_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter::type initial_capacity(initial_capacity_sexp); - return Rcpp::wrap(io___BufferOutputStream__Create(initial_capacity)); - END_RCPP +std::shared_ptr io___BufferOutputStream__Create(int64_t initial_capacity); +RcppExport SEXP _arrow_io___BufferOutputStream__Create(SEXP initial_capacity_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter::type initial_capacity(initial_capacity_sexp); + return Rcpp::wrap(io___BufferOutputStream__Create(initial_capacity)); +END_RCPP } #else -RcppExport SEXP _arrow_io___BufferOutputStream__Create(SEXP initial_capacity_sexp) { - Rf_error( - "Cannot call io___BufferOutputStream__Create(). Please use arrow::install_arrow() " - "to install required runtime libraries. "); +RcppExport SEXP _arrow_io___BufferOutputStream__Create(SEXP initial_capacity_sexp){ + Rf_error("Cannot call io___BufferOutputStream__Create(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // io.cpp #if defined(ARROW_R_WITH_ARROW) -int64_t io___BufferOutputStream__capacity( - const std::shared_ptr& stream); -RcppExport SEXP _arrow_io___BufferOutputStream__capacity(SEXP stream_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter< - const std::shared_ptr&>::type stream(stream_sexp); - return Rcpp::wrap(io___BufferOutputStream__capacity(stream)); - END_RCPP +int64_t io___BufferOutputStream__capacity(const std::shared_ptr& stream); +RcppExport SEXP _arrow_io___BufferOutputStream__capacity(SEXP stream_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type stream(stream_sexp); + return Rcpp::wrap(io___BufferOutputStream__capacity(stream)); +END_RCPP } #else -RcppExport SEXP _arrow_io___BufferOutputStream__capacity(SEXP stream_sexp) { - Rf_error( - "Cannot call io___BufferOutputStream__capacity(). Please use " - "arrow::install_arrow() to install required runtime libraries. "); +RcppExport SEXP _arrow_io___BufferOutputStream__capacity(SEXP stream_sexp){ + Rf_error("Cannot call io___BufferOutputStream__capacity(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // io.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr io___BufferOutputStream__Finish( - const std::shared_ptr& stream); -RcppExport SEXP _arrow_io___BufferOutputStream__Finish(SEXP stream_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter< - const std::shared_ptr&>::type stream(stream_sexp); - return Rcpp::wrap(io___BufferOutputStream__Finish(stream)); - END_RCPP +std::shared_ptr io___BufferOutputStream__Finish(const std::shared_ptr& stream); +RcppExport SEXP _arrow_io___BufferOutputStream__Finish(SEXP stream_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type stream(stream_sexp); + return Rcpp::wrap(io___BufferOutputStream__Finish(stream)); +END_RCPP } #else -RcppExport SEXP _arrow_io___BufferOutputStream__Finish(SEXP stream_sexp) { - Rf_error( - "Cannot call io___BufferOutputStream__Finish(). Please use arrow::install_arrow() " - "to install required runtime libraries. "); +RcppExport SEXP _arrow_io___BufferOutputStream__Finish(SEXP stream_sexp){ + Rf_error("Cannot call io___BufferOutputStream__Finish(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // io.cpp #if defined(ARROW_R_WITH_ARROW) -int64_t io___BufferOutputStream__Tell( - const std::shared_ptr& stream); -RcppExport SEXP _arrow_io___BufferOutputStream__Tell(SEXP stream_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter< - const std::shared_ptr&>::type stream(stream_sexp); - return Rcpp::wrap(io___BufferOutputStream__Tell(stream)); - END_RCPP +int64_t io___BufferOutputStream__Tell(const std::shared_ptr& stream); +RcppExport SEXP _arrow_io___BufferOutputStream__Tell(SEXP stream_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type stream(stream_sexp); + return Rcpp::wrap(io___BufferOutputStream__Tell(stream)); +END_RCPP } #else -RcppExport SEXP _arrow_io___BufferOutputStream__Tell(SEXP stream_sexp) { - Rf_error( - "Cannot call io___BufferOutputStream__Tell(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_io___BufferOutputStream__Tell(SEXP stream_sexp){ + Rf_error("Cannot call io___BufferOutputStream__Tell(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // io.cpp #if defined(ARROW_R_WITH_ARROW) -void io___BufferOutputStream__Write( - const std::shared_ptr& stream, RawVector_ bytes); -RcppExport SEXP _arrow_io___BufferOutputStream__Write(SEXP stream_sexp, SEXP bytes_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter< - const std::shared_ptr&>::type stream(stream_sexp); - Rcpp::traits::input_parameter::type bytes(bytes_sexp); - io___BufferOutputStream__Write(stream, bytes); - return R_NilValue; - END_RCPP +void io___BufferOutputStream__Write(const std::shared_ptr& stream, RawVector_ bytes); +RcppExport SEXP _arrow_io___BufferOutputStream__Write(SEXP stream_sexp, SEXP bytes_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type stream(stream_sexp); + Rcpp::traits::input_parameter::type bytes(bytes_sexp); + io___BufferOutputStream__Write(stream, bytes); + return R_NilValue; +END_RCPP } #else -RcppExport SEXP _arrow_io___BufferOutputStream__Write(SEXP stream_sexp, SEXP bytes_sexp) { - Rf_error( - "Cannot call io___BufferOutputStream__Write(). Please use arrow::install_arrow() " - "to install required runtime libraries. "); +RcppExport SEXP _arrow_io___BufferOutputStream__Write(SEXP stream_sexp, SEXP bytes_sexp){ + Rf_error("Cannot call io___BufferOutputStream__Write(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // io.cpp #if defined(ARROW_R_WITH_ARROW) std::shared_ptr io___MockOutputStream__initialize(); -RcppExport SEXP _arrow_io___MockOutputStream__initialize() { - BEGIN_RCPP - return Rcpp::wrap(io___MockOutputStream__initialize()); - END_RCPP +RcppExport SEXP _arrow_io___MockOutputStream__initialize(){ +BEGIN_RCPP + return Rcpp::wrap(io___MockOutputStream__initialize()); +END_RCPP } #else -RcppExport SEXP _arrow_io___MockOutputStream__initialize() { - Rf_error( - "Cannot call io___MockOutputStream__initialize(). Please use " - "arrow::install_arrow() to install required runtime libraries. "); +RcppExport SEXP _arrow_io___MockOutputStream__initialize(){ + Rf_error("Cannot call io___MockOutputStream__initialize(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // io.cpp #if defined(ARROW_R_WITH_ARROW) -int64_t io___MockOutputStream__GetExtentBytesWritten( - const std::shared_ptr& stream); -RcppExport SEXP _arrow_io___MockOutputStream__GetExtentBytesWritten(SEXP stream_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type - stream(stream_sexp); - return Rcpp::wrap(io___MockOutputStream__GetExtentBytesWritten(stream)); - END_RCPP +int64_t io___MockOutputStream__GetExtentBytesWritten(const std::shared_ptr& stream); +RcppExport SEXP _arrow_io___MockOutputStream__GetExtentBytesWritten(SEXP stream_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type stream(stream_sexp); + return Rcpp::wrap(io___MockOutputStream__GetExtentBytesWritten(stream)); +END_RCPP } #else -RcppExport SEXP _arrow_io___MockOutputStream__GetExtentBytesWritten(SEXP stream_sexp) { - Rf_error( - "Cannot call io___MockOutputStream__GetExtentBytesWritten(). Please use " - "arrow::install_arrow() to install required runtime libraries. "); +RcppExport SEXP _arrow_io___MockOutputStream__GetExtentBytesWritten(SEXP stream_sexp){ + Rf_error("Cannot call io___MockOutputStream__GetExtentBytesWritten(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // io.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr io___FixedSizeBufferWriter__initialize( - const std::shared_ptr& buffer); -RcppExport SEXP _arrow_io___FixedSizeBufferWriter__initialize(SEXP buffer_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type buffer( - buffer_sexp); - return Rcpp::wrap(io___FixedSizeBufferWriter__initialize(buffer)); - END_RCPP +std::shared_ptr io___FixedSizeBufferWriter__initialize(const std::shared_ptr& buffer); +RcppExport SEXP _arrow_io___FixedSizeBufferWriter__initialize(SEXP buffer_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type buffer(buffer_sexp); + return Rcpp::wrap(io___FixedSizeBufferWriter__initialize(buffer)); +END_RCPP } #else -RcppExport SEXP _arrow_io___FixedSizeBufferWriter__initialize(SEXP buffer_sexp) { - Rf_error( - "Cannot call io___FixedSizeBufferWriter__initialize(). Please use " - "arrow::install_arrow() to install required runtime libraries. "); +RcppExport SEXP _arrow_io___FixedSizeBufferWriter__initialize(SEXP buffer_sexp){ + Rf_error("Cannot call io___FixedSizeBufferWriter__initialize(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // json.cpp #if defined(ARROW_R_WITH_ARROW) std::shared_ptr json___ReadOptions__initialize(List_ options); -RcppExport SEXP _arrow_json___ReadOptions__initialize(SEXP options_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter::type options(options_sexp); - return Rcpp::wrap(json___ReadOptions__initialize(options)); - END_RCPP +RcppExport SEXP _arrow_json___ReadOptions__initialize(SEXP options_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter::type options(options_sexp); + return Rcpp::wrap(json___ReadOptions__initialize(options)); +END_RCPP } #else -RcppExport SEXP _arrow_json___ReadOptions__initialize(SEXP options_sexp) { - Rf_error( - "Cannot call json___ReadOptions__initialize(). Please use arrow::install_arrow() " - "to install required runtime libraries. "); +RcppExport SEXP _arrow_json___ReadOptions__initialize(SEXP options_sexp){ + Rf_error("Cannot call json___ReadOptions__initialize(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // json.cpp #if defined(ARROW_R_WITH_ARROW) std::shared_ptr json___ParseOptions__initialize(List_ options); -RcppExport SEXP _arrow_json___ParseOptions__initialize(SEXP options_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter::type options(options_sexp); - return Rcpp::wrap(json___ParseOptions__initialize(options)); - END_RCPP +RcppExport SEXP _arrow_json___ParseOptions__initialize(SEXP options_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter::type options(options_sexp); + return Rcpp::wrap(json___ParseOptions__initialize(options)); +END_RCPP } #else -RcppExport SEXP _arrow_json___ParseOptions__initialize(SEXP options_sexp) { - Rf_error( - "Cannot call json___ParseOptions__initialize(). Please use arrow::install_arrow() " - "to install required runtime libraries. "); +RcppExport SEXP _arrow_json___ParseOptions__initialize(SEXP options_sexp){ + Rf_error("Cannot call json___ParseOptions__initialize(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // json.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr json___TableReader__Make( - const std::shared_ptr& input, - const std::shared_ptr& read_options, - const std::shared_ptr& parse_options); -RcppExport SEXP _arrow_json___TableReader__Make(SEXP input_sexp, SEXP read_options_sexp, - SEXP parse_options_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type - input(input_sexp); - Rcpp::traits::input_parameter&>::type - read_options(read_options_sexp); - Rcpp::traits::input_parameter&>::type - parse_options(parse_options_sexp); - return Rcpp::wrap(json___TableReader__Make(input, read_options, parse_options)); - END_RCPP +std::shared_ptr json___TableReader__Make(const std::shared_ptr& input, const std::shared_ptr& read_options, const std::shared_ptr& parse_options); +RcppExport SEXP _arrow_json___TableReader__Make(SEXP input_sexp, SEXP read_options_sexp, SEXP parse_options_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type input(input_sexp); + Rcpp::traits::input_parameter&>::type read_options(read_options_sexp); + Rcpp::traits::input_parameter&>::type parse_options(parse_options_sexp); + return Rcpp::wrap(json___TableReader__Make(input, read_options, parse_options)); +END_RCPP } #else -RcppExport SEXP _arrow_json___TableReader__Make(SEXP input_sexp, SEXP read_options_sexp, - SEXP parse_options_sexp) { - Rf_error( - "Cannot call json___TableReader__Make(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_json___TableReader__Make(SEXP input_sexp, SEXP read_options_sexp, SEXP parse_options_sexp){ + Rf_error("Cannot call json___TableReader__Make(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // json.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr json___TableReader__Read( - const std::shared_ptr& table_reader); -RcppExport SEXP _arrow_json___TableReader__Read(SEXP table_reader_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type - table_reader(table_reader_sexp); - return Rcpp::wrap(json___TableReader__Read(table_reader)); - END_RCPP +std::shared_ptr json___TableReader__Read(const std::shared_ptr& table_reader); +RcppExport SEXP _arrow_json___TableReader__Read(SEXP table_reader_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type table_reader(table_reader_sexp); + return Rcpp::wrap(json___TableReader__Read(table_reader)); +END_RCPP } #else -RcppExport SEXP _arrow_json___TableReader__Read(SEXP table_reader_sexp) { - Rf_error( - "Cannot call json___TableReader__Read(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_json___TableReader__Read(SEXP table_reader_sexp){ + Rf_error("Cannot call json___TableReader__Read(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // memorypool.cpp #if defined(ARROW_R_WITH_ARROW) std::shared_ptr MemoryPool__default(); -RcppExport SEXP _arrow_MemoryPool__default() { - BEGIN_RCPP - return Rcpp::wrap(MemoryPool__default()); - END_RCPP +RcppExport SEXP _arrow_MemoryPool__default(){ +BEGIN_RCPP + return Rcpp::wrap(MemoryPool__default()); +END_RCPP } #else -RcppExport SEXP _arrow_MemoryPool__default() { - Rf_error( - "Cannot call MemoryPool__default(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_MemoryPool__default(){ + Rf_error("Cannot call MemoryPool__default(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // memorypool.cpp #if defined(ARROW_R_WITH_ARROW) int MemoryPool__bytes_allocated(const std::shared_ptr& pool); -RcppExport SEXP _arrow_MemoryPool__bytes_allocated(SEXP pool_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type pool( - pool_sexp); - return Rcpp::wrap(MemoryPool__bytes_allocated(pool)); - END_RCPP +RcppExport SEXP _arrow_MemoryPool__bytes_allocated(SEXP pool_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type pool(pool_sexp); + return Rcpp::wrap(MemoryPool__bytes_allocated(pool)); +END_RCPP } #else -RcppExport SEXP _arrow_MemoryPool__bytes_allocated(SEXP pool_sexp) { - Rf_error( - "Cannot call MemoryPool__bytes_allocated(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_MemoryPool__bytes_allocated(SEXP pool_sexp){ + Rf_error("Cannot call MemoryPool__bytes_allocated(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // memorypool.cpp #if defined(ARROW_R_WITH_ARROW) int MemoryPool__max_memory(const std::shared_ptr& pool); -RcppExport SEXP _arrow_MemoryPool__max_memory(SEXP pool_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type pool( - pool_sexp); - return Rcpp::wrap(MemoryPool__max_memory(pool)); - END_RCPP +RcppExport SEXP _arrow_MemoryPool__max_memory(SEXP pool_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type pool(pool_sexp); + return Rcpp::wrap(MemoryPool__max_memory(pool)); +END_RCPP } #else -RcppExport SEXP _arrow_MemoryPool__max_memory(SEXP pool_sexp) { - Rf_error( - "Cannot call MemoryPool__max_memory(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_MemoryPool__max_memory(SEXP pool_sexp){ + Rf_error("Cannot call MemoryPool__max_memory(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // message.cpp #if defined(ARROW_R_WITH_ARROW) int64_t ipc___Message__body_length(const std::unique_ptr& message); -RcppExport SEXP _arrow_ipc___Message__body_length(SEXP message_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type - message(message_sexp); - return Rcpp::wrap(ipc___Message__body_length(message)); - END_RCPP +RcppExport SEXP _arrow_ipc___Message__body_length(SEXP message_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type message(message_sexp); + return Rcpp::wrap(ipc___Message__body_length(message)); +END_RCPP } #else -RcppExport SEXP _arrow_ipc___Message__body_length(SEXP message_sexp) { - Rf_error( - "Cannot call ipc___Message__body_length(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_ipc___Message__body_length(SEXP message_sexp){ + Rf_error("Cannot call ipc___Message__body_length(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // message.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr ipc___Message__metadata( - const std::unique_ptr& message); -RcppExport SEXP _arrow_ipc___Message__metadata(SEXP message_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type - message(message_sexp); - return Rcpp::wrap(ipc___Message__metadata(message)); - END_RCPP +std::shared_ptr ipc___Message__metadata(const std::unique_ptr& message); +RcppExport SEXP _arrow_ipc___Message__metadata(SEXP message_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type message(message_sexp); + return Rcpp::wrap(ipc___Message__metadata(message)); +END_RCPP } #else -RcppExport SEXP _arrow_ipc___Message__metadata(SEXP message_sexp) { - Rf_error( - "Cannot call ipc___Message__metadata(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_ipc___Message__metadata(SEXP message_sexp){ + Rf_error("Cannot call ipc___Message__metadata(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // message.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr ipc___Message__body( - const std::unique_ptr& message); -RcppExport SEXP _arrow_ipc___Message__body(SEXP message_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type - message(message_sexp); - return Rcpp::wrap(ipc___Message__body(message)); - END_RCPP +std::shared_ptr ipc___Message__body(const std::unique_ptr& message); +RcppExport SEXP _arrow_ipc___Message__body(SEXP message_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type message(message_sexp); + return Rcpp::wrap(ipc___Message__body(message)); +END_RCPP } #else -RcppExport SEXP _arrow_ipc___Message__body(SEXP message_sexp) { - Rf_error( - "Cannot call ipc___Message__body(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_ipc___Message__body(SEXP message_sexp){ + Rf_error("Cannot call ipc___Message__body(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // message.cpp #if defined(ARROW_R_WITH_ARROW) int64_t ipc___Message__Verify(const std::unique_ptr& message); -RcppExport SEXP _arrow_ipc___Message__Verify(SEXP message_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type - message(message_sexp); - return Rcpp::wrap(ipc___Message__Verify(message)); - END_RCPP +RcppExport SEXP _arrow_ipc___Message__Verify(SEXP message_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type message(message_sexp); + return Rcpp::wrap(ipc___Message__Verify(message)); +END_RCPP } #else -RcppExport SEXP _arrow_ipc___Message__Verify(SEXP message_sexp) { - Rf_error( - "Cannot call ipc___Message__Verify(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_ipc___Message__Verify(SEXP message_sexp){ + Rf_error("Cannot call ipc___Message__Verify(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // message.cpp #if defined(ARROW_R_WITH_ARROW) -arrow::ipc::Message::Type ipc___Message__type( - const std::unique_ptr& message); -RcppExport SEXP _arrow_ipc___Message__type(SEXP message_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type - message(message_sexp); - return Rcpp::wrap(ipc___Message__type(message)); - END_RCPP +arrow::ipc::Message::Type ipc___Message__type(const std::unique_ptr& message); +RcppExport SEXP _arrow_ipc___Message__type(SEXP message_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type message(message_sexp); + return Rcpp::wrap(ipc___Message__type(message)); +END_RCPP } #else -RcppExport SEXP _arrow_ipc___Message__type(SEXP message_sexp) { - Rf_error( - "Cannot call ipc___Message__type(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_ipc___Message__type(SEXP message_sexp){ + Rf_error("Cannot call ipc___Message__type(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // message.cpp #if defined(ARROW_R_WITH_ARROW) -bool ipc___Message__Equals(const std::unique_ptr& x, - const std::unique_ptr& y); -RcppExport SEXP _arrow_ipc___Message__Equals(SEXP x_sexp, SEXP y_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type x( - x_sexp); - Rcpp::traits::input_parameter&>::type y( - y_sexp); - return Rcpp::wrap(ipc___Message__Equals(x, y)); - END_RCPP +bool ipc___Message__Equals(const std::unique_ptr& x, const std::unique_ptr& y); +RcppExport SEXP _arrow_ipc___Message__Equals(SEXP x_sexp, SEXP y_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type x(x_sexp); + Rcpp::traits::input_parameter&>::type y(y_sexp); + return Rcpp::wrap(ipc___Message__Equals(x, y)); +END_RCPP } #else -RcppExport SEXP _arrow_ipc___Message__Equals(SEXP x_sexp, SEXP y_sexp) { - Rf_error( - "Cannot call ipc___Message__Equals(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_ipc___Message__Equals(SEXP x_sexp, SEXP y_sexp){ + Rf_error("Cannot call ipc___Message__Equals(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // message.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr ipc___ReadRecordBatch__Message__Schema( - const std::unique_ptr& message, - const std::shared_ptr& schema); -RcppExport SEXP _arrow_ipc___ReadRecordBatch__Message__Schema(SEXP message_sexp, - SEXP schema_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type - message(message_sexp); - Rcpp::traits::input_parameter&>::type schema( - schema_sexp); - return Rcpp::wrap(ipc___ReadRecordBatch__Message__Schema(message, schema)); - END_RCPP +std::shared_ptr ipc___ReadRecordBatch__Message__Schema(const std::unique_ptr& message, const std::shared_ptr& schema); +RcppExport SEXP _arrow_ipc___ReadRecordBatch__Message__Schema(SEXP message_sexp, SEXP schema_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type message(message_sexp); + Rcpp::traits::input_parameter&>::type schema(schema_sexp); + return Rcpp::wrap(ipc___ReadRecordBatch__Message__Schema(message, schema)); +END_RCPP } #else -RcppExport SEXP _arrow_ipc___ReadRecordBatch__Message__Schema(SEXP message_sexp, - SEXP schema_sexp) { - Rf_error( - "Cannot call ipc___ReadRecordBatch__Message__Schema(). Please use " - "arrow::install_arrow() to install required runtime libraries. "); +RcppExport SEXP _arrow_ipc___ReadRecordBatch__Message__Schema(SEXP message_sexp, SEXP schema_sexp){ + Rf_error("Cannot call ipc___ReadRecordBatch__Message__Schema(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // message.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr ipc___ReadSchema_InputStream( - const std::shared_ptr& stream); -RcppExport SEXP _arrow_ipc___ReadSchema_InputStream(SEXP stream_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type - stream(stream_sexp); - return Rcpp::wrap(ipc___ReadSchema_InputStream(stream)); - END_RCPP +std::shared_ptr ipc___ReadSchema_InputStream(const std::shared_ptr& stream); +RcppExport SEXP _arrow_ipc___ReadSchema_InputStream(SEXP stream_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type stream(stream_sexp); + return Rcpp::wrap(ipc___ReadSchema_InputStream(stream)); +END_RCPP } #else -RcppExport SEXP _arrow_ipc___ReadSchema_InputStream(SEXP stream_sexp) { - Rf_error( - "Cannot call ipc___ReadSchema_InputStream(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_ipc___ReadSchema_InputStream(SEXP stream_sexp){ + Rf_error("Cannot call ipc___ReadSchema_InputStream(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // message.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr ipc___ReadSchema_Message( - const std::unique_ptr& message); -RcppExport SEXP _arrow_ipc___ReadSchema_Message(SEXP message_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type - message(message_sexp); - return Rcpp::wrap(ipc___ReadSchema_Message(message)); - END_RCPP +std::shared_ptr ipc___ReadSchema_Message(const std::unique_ptr& message); +RcppExport SEXP _arrow_ipc___ReadSchema_Message(SEXP message_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type message(message_sexp); + return Rcpp::wrap(ipc___ReadSchema_Message(message)); +END_RCPP } #else -RcppExport SEXP _arrow_ipc___ReadSchema_Message(SEXP message_sexp) { - Rf_error( - "Cannot call ipc___ReadSchema_Message(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_ipc___ReadSchema_Message(SEXP message_sexp){ + Rf_error("Cannot call ipc___ReadSchema_Message(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // message.cpp #if defined(ARROW_R_WITH_ARROW) -std::unique_ptr ipc___MessageReader__Open( - const std::shared_ptr& stream); -RcppExport SEXP _arrow_ipc___MessageReader__Open(SEXP stream_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type - stream(stream_sexp); - return Rcpp::wrap(ipc___MessageReader__Open(stream)); - END_RCPP +std::unique_ptr ipc___MessageReader__Open(const std::shared_ptr& stream); +RcppExport SEXP _arrow_ipc___MessageReader__Open(SEXP stream_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type stream(stream_sexp); + return Rcpp::wrap(ipc___MessageReader__Open(stream)); +END_RCPP } #else -RcppExport SEXP _arrow_ipc___MessageReader__Open(SEXP stream_sexp) { - Rf_error( - "Cannot call ipc___MessageReader__Open(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_ipc___MessageReader__Open(SEXP stream_sexp){ + Rf_error("Cannot call ipc___MessageReader__Open(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // message.cpp #if defined(ARROW_R_WITH_ARROW) -std::unique_ptr ipc___MessageReader__ReadNextMessage( - const std::unique_ptr& reader); -RcppExport SEXP _arrow_ipc___MessageReader__ReadNextMessage(SEXP reader_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type - reader(reader_sexp); - return Rcpp::wrap(ipc___MessageReader__ReadNextMessage(reader)); - END_RCPP +std::unique_ptr ipc___MessageReader__ReadNextMessage(const std::unique_ptr& reader); +RcppExport SEXP _arrow_ipc___MessageReader__ReadNextMessage(SEXP reader_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type reader(reader_sexp); + return Rcpp::wrap(ipc___MessageReader__ReadNextMessage(reader)); +END_RCPP } #else -RcppExport SEXP _arrow_ipc___MessageReader__ReadNextMessage(SEXP reader_sexp) { - Rf_error( - "Cannot call ipc___MessageReader__ReadNextMessage(). Please use " - "arrow::install_arrow() to install required runtime libraries. "); +RcppExport SEXP _arrow_ipc___MessageReader__ReadNextMessage(SEXP reader_sexp){ + Rf_error("Cannot call ipc___MessageReader__ReadNextMessage(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // message.cpp #if defined(ARROW_R_WITH_ARROW) -std::unique_ptr ipc___ReadMessage( - const std::shared_ptr& stream); -RcppExport SEXP _arrow_ipc___ReadMessage(SEXP stream_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type - stream(stream_sexp); - return Rcpp::wrap(ipc___ReadMessage(stream)); - END_RCPP +std::unique_ptr ipc___ReadMessage(const std::shared_ptr& stream); +RcppExport SEXP _arrow_ipc___ReadMessage(SEXP stream_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type stream(stream_sexp); + return Rcpp::wrap(ipc___ReadMessage(stream)); +END_RCPP } #else -RcppExport SEXP _arrow_ipc___ReadMessage(SEXP stream_sexp) { - Rf_error( - "Cannot call ipc___ReadMessage(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_ipc___ReadMessage(SEXP stream_sexp){ + Rf_error("Cannot call ipc___ReadMessage(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // parquet.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr -parquet___arrow___ArrowReaderProperties__Make(bool use_threads); -RcppExport SEXP -_arrow_parquet___arrow___ArrowReaderProperties__Make(SEXP use_threads_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter::type use_threads(use_threads_sexp); - return Rcpp::wrap(parquet___arrow___ArrowReaderProperties__Make(use_threads)); - END_RCPP +std::shared_ptr parquet___arrow___ArrowReaderProperties__Make(bool use_threads); +RcppExport SEXP _arrow_parquet___arrow___ArrowReaderProperties__Make(SEXP use_threads_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter::type use_threads(use_threads_sexp); + return Rcpp::wrap(parquet___arrow___ArrowReaderProperties__Make(use_threads)); +END_RCPP } #else -RcppExport SEXP -_arrow_parquet___arrow___ArrowReaderProperties__Make(SEXP use_threads_sexp) { - Rf_error( - "Cannot call parquet___arrow___ArrowReaderProperties__Make(). Please use " - "arrow::install_arrow() to install required runtime libraries. "); +RcppExport SEXP _arrow_parquet___arrow___ArrowReaderProperties__Make(SEXP use_threads_sexp){ + Rf_error("Cannot call parquet___arrow___ArrowReaderProperties__Make(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // parquet.cpp #if defined(ARROW_R_WITH_ARROW) -void parquet___arrow___ArrowReaderProperties__set_use_threads( - const std::shared_ptr& properties, bool use_threads); -RcppExport SEXP _arrow_parquet___arrow___ArrowReaderProperties__set_use_threads( - SEXP properties_sexp, SEXP use_threads_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>:: - type properties(properties_sexp); - Rcpp::traits::input_parameter::type use_threads(use_threads_sexp); - parquet___arrow___ArrowReaderProperties__set_use_threads(properties, use_threads); - return R_NilValue; - END_RCPP +void parquet___arrow___ArrowReaderProperties__set_use_threads(const std::shared_ptr& properties, bool use_threads); +RcppExport SEXP _arrow_parquet___arrow___ArrowReaderProperties__set_use_threads(SEXP properties_sexp, SEXP use_threads_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type properties(properties_sexp); + Rcpp::traits::input_parameter::type use_threads(use_threads_sexp); + parquet___arrow___ArrowReaderProperties__set_use_threads(properties, use_threads); + return R_NilValue; +END_RCPP } #else -RcppExport SEXP _arrow_parquet___arrow___ArrowReaderProperties__set_use_threads( - SEXP properties_sexp, SEXP use_threads_sexp) { - Rf_error( - "Cannot call parquet___arrow___ArrowReaderProperties__set_use_threads(). Please " - "use arrow::install_arrow() to install required runtime libraries. "); +RcppExport SEXP _arrow_parquet___arrow___ArrowReaderProperties__set_use_threads(SEXP properties_sexp, SEXP use_threads_sexp){ + Rf_error("Cannot call parquet___arrow___ArrowReaderProperties__set_use_threads(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // parquet.cpp #if defined(ARROW_R_WITH_ARROW) -bool parquet___arrow___ArrowReaderProperties__get_use_threads( - const std::shared_ptr& properties, bool use_threads); -RcppExport SEXP _arrow_parquet___arrow___ArrowReaderProperties__get_use_threads( - SEXP properties_sexp, SEXP use_threads_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>:: - type properties(properties_sexp); - Rcpp::traits::input_parameter::type use_threads(use_threads_sexp); - return Rcpp::wrap( - parquet___arrow___ArrowReaderProperties__get_use_threads(properties, use_threads)); - END_RCPP +bool parquet___arrow___ArrowReaderProperties__get_use_threads(const std::shared_ptr& properties, bool use_threads); +RcppExport SEXP _arrow_parquet___arrow___ArrowReaderProperties__get_use_threads(SEXP properties_sexp, SEXP use_threads_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type properties(properties_sexp); + Rcpp::traits::input_parameter::type use_threads(use_threads_sexp); + return Rcpp::wrap(parquet___arrow___ArrowReaderProperties__get_use_threads(properties, use_threads)); +END_RCPP } #else -RcppExport SEXP _arrow_parquet___arrow___ArrowReaderProperties__get_use_threads( - SEXP properties_sexp, SEXP use_threads_sexp) { - Rf_error( - "Cannot call parquet___arrow___ArrowReaderProperties__get_use_threads(). Please " - "use arrow::install_arrow() to install required runtime libraries. "); +RcppExport SEXP _arrow_parquet___arrow___ArrowReaderProperties__get_use_threads(SEXP properties_sexp, SEXP use_threads_sexp){ + Rf_error("Cannot call parquet___arrow___ArrowReaderProperties__get_use_threads(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // parquet.cpp #if defined(ARROW_R_WITH_ARROW) -bool parquet___arrow___ArrowReaderProperties__get_read_dictionary( - const std::shared_ptr& properties, int column_index); -RcppExport SEXP _arrow_parquet___arrow___ArrowReaderProperties__get_read_dictionary( - SEXP properties_sexp, SEXP column_index_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>:: - type properties(properties_sexp); - Rcpp::traits::input_parameter::type column_index(column_index_sexp); - return Rcpp::wrap(parquet___arrow___ArrowReaderProperties__get_read_dictionary( - properties, column_index)); - END_RCPP +bool parquet___arrow___ArrowReaderProperties__get_read_dictionary(const std::shared_ptr& properties, int column_index); +RcppExport SEXP _arrow_parquet___arrow___ArrowReaderProperties__get_read_dictionary(SEXP properties_sexp, SEXP column_index_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type properties(properties_sexp); + Rcpp::traits::input_parameter::type column_index(column_index_sexp); + return Rcpp::wrap(parquet___arrow___ArrowReaderProperties__get_read_dictionary(properties, column_index)); +END_RCPP } #else -RcppExport SEXP _arrow_parquet___arrow___ArrowReaderProperties__get_read_dictionary( - SEXP properties_sexp, SEXP column_index_sexp) { - Rf_error( - "Cannot call parquet___arrow___ArrowReaderProperties__get_read_dictionary(). " - "Please use arrow::install_arrow() to install required runtime libraries. "); +RcppExport SEXP _arrow_parquet___arrow___ArrowReaderProperties__get_read_dictionary(SEXP properties_sexp, SEXP column_index_sexp){ + Rf_error("Cannot call parquet___arrow___ArrowReaderProperties__get_read_dictionary(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // parquet.cpp #if defined(ARROW_R_WITH_ARROW) -void parquet___arrow___ArrowReaderProperties__set_read_dictionary( - const std::shared_ptr& properties, int column_index, - bool read_dict); -RcppExport SEXP _arrow_parquet___arrow___ArrowReaderProperties__set_read_dictionary( - SEXP properties_sexp, SEXP column_index_sexp, SEXP read_dict_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>:: - type properties(properties_sexp); - Rcpp::traits::input_parameter::type column_index(column_index_sexp); - Rcpp::traits::input_parameter::type read_dict(read_dict_sexp); - parquet___arrow___ArrowReaderProperties__set_read_dictionary(properties, column_index, - read_dict); - return R_NilValue; - END_RCPP +void parquet___arrow___ArrowReaderProperties__set_read_dictionary(const std::shared_ptr& properties, int column_index, bool read_dict); +RcppExport SEXP _arrow_parquet___arrow___ArrowReaderProperties__set_read_dictionary(SEXP properties_sexp, SEXP column_index_sexp, SEXP read_dict_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type properties(properties_sexp); + Rcpp::traits::input_parameter::type column_index(column_index_sexp); + Rcpp::traits::input_parameter::type read_dict(read_dict_sexp); + parquet___arrow___ArrowReaderProperties__set_read_dictionary(properties, column_index, read_dict); + return R_NilValue; +END_RCPP } #else -RcppExport SEXP _arrow_parquet___arrow___ArrowReaderProperties__set_read_dictionary( - SEXP properties_sexp, SEXP column_index_sexp, SEXP read_dict_sexp) { - Rf_error( - "Cannot call parquet___arrow___ArrowReaderProperties__set_read_dictionary(). " - "Please use arrow::install_arrow() to install required runtime libraries. "); +RcppExport SEXP _arrow_parquet___arrow___ArrowReaderProperties__set_read_dictionary(SEXP properties_sexp, SEXP column_index_sexp, SEXP read_dict_sexp){ + Rf_error("Cannot call parquet___arrow___ArrowReaderProperties__set_read_dictionary(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // parquet.cpp #if defined(ARROW_R_WITH_ARROW) -std::unique_ptr parquet___arrow___FileReader__OpenFile( - const std::shared_ptr& file, - const std::shared_ptr& props); -RcppExport SEXP _arrow_parquet___arrow___FileReader__OpenFile(SEXP file_sexp, - SEXP props_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type - file(file_sexp); - Rcpp::traits::input_parameter< - const std::shared_ptr&>::type props(props_sexp); - return Rcpp::wrap(parquet___arrow___FileReader__OpenFile(file, props)); - END_RCPP +std::unique_ptr parquet___arrow___FileReader__OpenFile(const std::shared_ptr& file, const std::shared_ptr& props); +RcppExport SEXP _arrow_parquet___arrow___FileReader__OpenFile(SEXP file_sexp, SEXP props_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type file(file_sexp); + Rcpp::traits::input_parameter&>::type props(props_sexp); + return Rcpp::wrap(parquet___arrow___FileReader__OpenFile(file, props)); +END_RCPP } #else -RcppExport SEXP _arrow_parquet___arrow___FileReader__OpenFile(SEXP file_sexp, - SEXP props_sexp) { - Rf_error( - "Cannot call parquet___arrow___FileReader__OpenFile(). Please use " - "arrow::install_arrow() to install required runtime libraries. "); +RcppExport SEXP _arrow_parquet___arrow___FileReader__OpenFile(SEXP file_sexp, SEXP props_sexp){ + Rf_error("Cannot call parquet___arrow___FileReader__OpenFile(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // parquet.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr parquet___arrow___FileReader__ReadTable1( - const std::unique_ptr& reader); -RcppExport SEXP _arrow_parquet___arrow___FileReader__ReadTable1(SEXP reader_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type - reader(reader_sexp); - return Rcpp::wrap(parquet___arrow___FileReader__ReadTable1(reader)); - END_RCPP +std::shared_ptr parquet___arrow___FileReader__ReadTable1(const std::unique_ptr& reader); +RcppExport SEXP _arrow_parquet___arrow___FileReader__ReadTable1(SEXP reader_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type reader(reader_sexp); + return Rcpp::wrap(parquet___arrow___FileReader__ReadTable1(reader)); +END_RCPP } #else -RcppExport SEXP _arrow_parquet___arrow___FileReader__ReadTable1(SEXP reader_sexp) { - Rf_error( - "Cannot call parquet___arrow___FileReader__ReadTable1(). Please use " - "arrow::install_arrow() to install required runtime libraries. "); +RcppExport SEXP _arrow_parquet___arrow___FileReader__ReadTable1(SEXP reader_sexp){ + Rf_error("Cannot call parquet___arrow___FileReader__ReadTable1(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // parquet.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr parquet___arrow___FileReader__ReadTable2( - const std::unique_ptr& reader, - const std::vector& column_indices); -RcppExport SEXP _arrow_parquet___arrow___FileReader__ReadTable2( - SEXP reader_sexp, SEXP column_indices_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type - reader(reader_sexp); - Rcpp::traits::input_parameter&>::type column_indices( - column_indices_sexp); - return Rcpp::wrap(parquet___arrow___FileReader__ReadTable2(reader, column_indices)); - END_RCPP +std::shared_ptr parquet___arrow___FileReader__ReadTable2(const std::unique_ptr& reader, const std::vector& column_indices); +RcppExport SEXP _arrow_parquet___arrow___FileReader__ReadTable2(SEXP reader_sexp, SEXP column_indices_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type reader(reader_sexp); + Rcpp::traits::input_parameter&>::type column_indices(column_indices_sexp); + return Rcpp::wrap(parquet___arrow___FileReader__ReadTable2(reader, column_indices)); +END_RCPP } #else -RcppExport SEXP _arrow_parquet___arrow___FileReader__ReadTable2( - SEXP reader_sexp, SEXP column_indices_sexp) { - Rf_error( - "Cannot call parquet___arrow___FileReader__ReadTable2(). Please use " - "arrow::install_arrow() to install required runtime libraries. "); +RcppExport SEXP _arrow_parquet___arrow___FileReader__ReadTable2(SEXP reader_sexp, SEXP column_indices_sexp){ + Rf_error("Cannot call parquet___arrow___FileReader__ReadTable2(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // parquet.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr -parquet___ArrowWriterProperties___Builder__create(); -RcppExport SEXP _arrow_parquet___ArrowWriterProperties___Builder__create() { - BEGIN_RCPP - return Rcpp::wrap(parquet___ArrowWriterProperties___Builder__create()); - END_RCPP +std::shared_ptr parquet___ArrowWriterProperties___Builder__create(); +RcppExport SEXP _arrow_parquet___ArrowWriterProperties___Builder__create(){ +BEGIN_RCPP + return Rcpp::wrap(parquet___ArrowWriterProperties___Builder__create()); +END_RCPP } #else -RcppExport SEXP _arrow_parquet___ArrowWriterProperties___Builder__create() { - Rf_error( - "Cannot call parquet___ArrowWriterProperties___Builder__create(). Please use " - "arrow::install_arrow() to install required runtime libraries. "); +RcppExport SEXP _arrow_parquet___ArrowWriterProperties___Builder__create(){ + Rf_error("Cannot call parquet___ArrowWriterProperties___Builder__create(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // parquet.cpp #if defined(ARROW_R_WITH_ARROW) -void parquet___ArrowWriterProperties___Builder__store_schema( - const std::shared_ptr& builder); -RcppExport SEXP -_arrow_parquet___ArrowWriterProperties___Builder__store_schema(SEXP builder_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter< - const std::shared_ptr&>::type - builder(builder_sexp); - parquet___ArrowWriterProperties___Builder__store_schema(builder); - return R_NilValue; - END_RCPP +void parquet___ArrowWriterProperties___Builder__store_schema(const std::shared_ptr& builder); +RcppExport SEXP _arrow_parquet___ArrowWriterProperties___Builder__store_schema(SEXP builder_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type builder(builder_sexp); + parquet___ArrowWriterProperties___Builder__store_schema(builder); + return R_NilValue; +END_RCPP } #else -RcppExport SEXP -_arrow_parquet___ArrowWriterProperties___Builder__store_schema(SEXP builder_sexp) { - Rf_error( - "Cannot call parquet___ArrowWriterProperties___Builder__store_schema(). Please use " - "arrow::install_arrow() to install required runtime libraries. "); +RcppExport SEXP _arrow_parquet___ArrowWriterProperties___Builder__store_schema(SEXP builder_sexp){ + Rf_error("Cannot call parquet___ArrowWriterProperties___Builder__store_schema(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // parquet.cpp #if defined(ARROW_R_WITH_ARROW) -void parquet___ArrowWriterProperties___Builder__enable_deprecated_int96_timestamps( - const std::shared_ptr& builder); -RcppExport SEXP -_arrow_parquet___ArrowWriterProperties___Builder__enable_deprecated_int96_timestamps( - SEXP builder_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter< - const std::shared_ptr&>::type - builder(builder_sexp); - parquet___ArrowWriterProperties___Builder__enable_deprecated_int96_timestamps(builder); - return R_NilValue; - END_RCPP +void parquet___ArrowWriterProperties___Builder__enable_deprecated_int96_timestamps(const std::shared_ptr& builder); +RcppExport SEXP _arrow_parquet___ArrowWriterProperties___Builder__enable_deprecated_int96_timestamps(SEXP builder_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type builder(builder_sexp); + parquet___ArrowWriterProperties___Builder__enable_deprecated_int96_timestamps(builder); + return R_NilValue; +END_RCPP } #else -RcppExport SEXP -_arrow_parquet___ArrowWriterProperties___Builder__enable_deprecated_int96_timestamps( - SEXP builder_sexp) { - Rf_error( - "Cannot call " - "parquet___ArrowWriterProperties___Builder__enable_deprecated_int96_timestamps(). " - "Please use arrow::install_arrow() to install required runtime libraries. "); +RcppExport SEXP _arrow_parquet___ArrowWriterProperties___Builder__enable_deprecated_int96_timestamps(SEXP builder_sexp){ + Rf_error("Cannot call parquet___ArrowWriterProperties___Builder__enable_deprecated_int96_timestamps(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // parquet.cpp #if defined(ARROW_R_WITH_ARROW) -void parquet___ArrowWriterProperties___Builder__disable_deprecated_int96_timestamps( - const std::shared_ptr& builder); -RcppExport SEXP -_arrow_parquet___ArrowWriterProperties___Builder__disable_deprecated_int96_timestamps( - SEXP builder_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter< - const std::shared_ptr&>::type - builder(builder_sexp); - parquet___ArrowWriterProperties___Builder__disable_deprecated_int96_timestamps(builder); - return R_NilValue; - END_RCPP +void parquet___ArrowWriterProperties___Builder__disable_deprecated_int96_timestamps(const std::shared_ptr& builder); +RcppExport SEXP _arrow_parquet___ArrowWriterProperties___Builder__disable_deprecated_int96_timestamps(SEXP builder_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type builder(builder_sexp); + parquet___ArrowWriterProperties___Builder__disable_deprecated_int96_timestamps(builder); + return R_NilValue; +END_RCPP } #else -RcppExport SEXP -_arrow_parquet___ArrowWriterProperties___Builder__disable_deprecated_int96_timestamps( - SEXP builder_sexp) { - Rf_error( - "Cannot call " - "parquet___ArrowWriterProperties___Builder__disable_deprecated_int96_timestamps(). " - "Please use arrow::install_arrow() to install required runtime libraries. "); +RcppExport SEXP _arrow_parquet___ArrowWriterProperties___Builder__disable_deprecated_int96_timestamps(SEXP builder_sexp){ + Rf_error("Cannot call parquet___ArrowWriterProperties___Builder__disable_deprecated_int96_timestamps(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // parquet.cpp #if defined(ARROW_R_WITH_ARROW) -void parquet___ArrowWriterProperties___Builder__coerce_timestamps( - const std::shared_ptr& builder, - arrow::TimeUnit::type unit); -RcppExport SEXP _arrow_parquet___ArrowWriterProperties___Builder__coerce_timestamps( - SEXP builder_sexp, SEXP unit_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter< - const std::shared_ptr&>::type - builder(builder_sexp); - Rcpp::traits::input_parameter::type unit(unit_sexp); - parquet___ArrowWriterProperties___Builder__coerce_timestamps(builder, unit); - return R_NilValue; - END_RCPP +void parquet___ArrowWriterProperties___Builder__coerce_timestamps(const std::shared_ptr& builder, arrow::TimeUnit::type unit); +RcppExport SEXP _arrow_parquet___ArrowWriterProperties___Builder__coerce_timestamps(SEXP builder_sexp, SEXP unit_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type builder(builder_sexp); + Rcpp::traits::input_parameter::type unit(unit_sexp); + parquet___ArrowWriterProperties___Builder__coerce_timestamps(builder, unit); + return R_NilValue; +END_RCPP } #else -RcppExport SEXP _arrow_parquet___ArrowWriterProperties___Builder__coerce_timestamps( - SEXP builder_sexp, SEXP unit_sexp) { - Rf_error( - "Cannot call parquet___ArrowWriterProperties___Builder__coerce_timestamps(). " - "Please use arrow::install_arrow() to install required runtime libraries. "); +RcppExport SEXP _arrow_parquet___ArrowWriterProperties___Builder__coerce_timestamps(SEXP builder_sexp, SEXP unit_sexp){ + Rf_error("Cannot call parquet___ArrowWriterProperties___Builder__coerce_timestamps(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // parquet.cpp #if defined(ARROW_R_WITH_ARROW) -void parquet___ArrowWriterProperties___Builder__allow_truncated_timestamps( - const std::shared_ptr& builder); -RcppExport SEXP -_arrow_parquet___ArrowWriterProperties___Builder__allow_truncated_timestamps( - SEXP builder_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter< - const std::shared_ptr&>::type - builder(builder_sexp); - parquet___ArrowWriterProperties___Builder__allow_truncated_timestamps(builder); - return R_NilValue; - END_RCPP +void parquet___ArrowWriterProperties___Builder__allow_truncated_timestamps(const std::shared_ptr& builder); +RcppExport SEXP _arrow_parquet___ArrowWriterProperties___Builder__allow_truncated_timestamps(SEXP builder_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type builder(builder_sexp); + parquet___ArrowWriterProperties___Builder__allow_truncated_timestamps(builder); + return R_NilValue; +END_RCPP } #else -RcppExport SEXP -_arrow_parquet___ArrowWriterProperties___Builder__allow_truncated_timestamps( - SEXP builder_sexp) { - Rf_error( - "Cannot call " - "parquet___ArrowWriterProperties___Builder__allow_truncated_timestamps(). Please " - "use arrow::install_arrow() to install required runtime libraries. "); +RcppExport SEXP _arrow_parquet___ArrowWriterProperties___Builder__allow_truncated_timestamps(SEXP builder_sexp){ + Rf_error("Cannot call parquet___ArrowWriterProperties___Builder__allow_truncated_timestamps(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // parquet.cpp #if defined(ARROW_R_WITH_ARROW) -void parquet___ArrowWriterProperties___Builder__disallow_truncated_timestamps( - const std::shared_ptr& builder); -RcppExport SEXP -_arrow_parquet___ArrowWriterProperties___Builder__disallow_truncated_timestamps( - SEXP builder_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter< - const std::shared_ptr&>::type - builder(builder_sexp); - parquet___ArrowWriterProperties___Builder__disallow_truncated_timestamps(builder); - return R_NilValue; - END_RCPP +void parquet___ArrowWriterProperties___Builder__disallow_truncated_timestamps(const std::shared_ptr& builder); +RcppExport SEXP _arrow_parquet___ArrowWriterProperties___Builder__disallow_truncated_timestamps(SEXP builder_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type builder(builder_sexp); + parquet___ArrowWriterProperties___Builder__disallow_truncated_timestamps(builder); + return R_NilValue; +END_RCPP } #else -RcppExport SEXP -_arrow_parquet___ArrowWriterProperties___Builder__disallow_truncated_timestamps( - SEXP builder_sexp) { - Rf_error( - "Cannot call " - "parquet___ArrowWriterProperties___Builder__disallow_truncated_timestamps(). " - "Please use arrow::install_arrow() to install required runtime libraries. "); +RcppExport SEXP _arrow_parquet___ArrowWriterProperties___Builder__disallow_truncated_timestamps(SEXP builder_sexp){ + Rf_error("Cannot call parquet___ArrowWriterProperties___Builder__disallow_truncated_timestamps(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // parquet.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr -parquet___ArrowWriterProperties___Builder__build( - const std::shared_ptr& builder); -RcppExport SEXP -_arrow_parquet___ArrowWriterProperties___Builder__build(SEXP builder_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter< - const std::shared_ptr&>::type - builder(builder_sexp); - return Rcpp::wrap(parquet___ArrowWriterProperties___Builder__build(builder)); - END_RCPP +std::shared_ptr parquet___ArrowWriterProperties___Builder__build(const std::shared_ptr& builder); +RcppExport SEXP _arrow_parquet___ArrowWriterProperties___Builder__build(SEXP builder_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type builder(builder_sexp); + return Rcpp::wrap(parquet___ArrowWriterProperties___Builder__build(builder)); +END_RCPP } #else -RcppExport SEXP -_arrow_parquet___ArrowWriterProperties___Builder__build(SEXP builder_sexp) { - Rf_error( - "Cannot call parquet___ArrowWriterProperties___Builder__build(). Please use " - "arrow::install_arrow() to install required runtime libraries. "); +RcppExport SEXP _arrow_parquet___ArrowWriterProperties___Builder__build(SEXP builder_sexp){ + Rf_error("Cannot call parquet___ArrowWriterProperties___Builder__build(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // parquet.cpp #if defined(ARROW_R_WITH_ARROW) std::shared_ptr parquet___default_writer_properties(); -RcppExport SEXP _arrow_parquet___default_writer_properties() { - BEGIN_RCPP - return Rcpp::wrap(parquet___default_writer_properties()); - END_RCPP +RcppExport SEXP _arrow_parquet___default_writer_properties(){ +BEGIN_RCPP + return Rcpp::wrap(parquet___default_writer_properties()); +END_RCPP } #else -RcppExport SEXP _arrow_parquet___default_writer_properties() { - Rf_error( - "Cannot call parquet___default_writer_properties(). Please use " - "arrow::install_arrow() to install required runtime libraries. "); +RcppExport SEXP _arrow_parquet___default_writer_properties(){ + Rf_error("Cannot call parquet___default_writer_properties(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // parquet.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr -parquet___WriterProperties___Builder__create(); -RcppExport SEXP _arrow_parquet___WriterProperties___Builder__create() { - BEGIN_RCPP - return Rcpp::wrap(parquet___WriterProperties___Builder__create()); - END_RCPP +std::shared_ptr parquet___WriterProperties___Builder__create(); +RcppExport SEXP _arrow_parquet___WriterProperties___Builder__create(){ +BEGIN_RCPP + return Rcpp::wrap(parquet___WriterProperties___Builder__create()); +END_RCPP } #else -RcppExport SEXP _arrow_parquet___WriterProperties___Builder__create() { - Rf_error( - "Cannot call parquet___WriterProperties___Builder__create(). Please use " - "arrow::install_arrow() to install required runtime libraries. "); +RcppExport SEXP _arrow_parquet___WriterProperties___Builder__create(){ + Rf_error("Cannot call parquet___WriterProperties___Builder__create(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // parquet.cpp #if defined(ARROW_R_WITH_ARROW) -void parquet___WriterProperties___Builder__version( - const std::shared_ptr& builder, - const parquet::ParquetVersion::type& version); -RcppExport SEXP _arrow_parquet___WriterProperties___Builder__version(SEXP builder_sexp, - SEXP version_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter< - const std::shared_ptr&>::type - builder(builder_sexp); - Rcpp::traits::input_parameter::type version( - version_sexp); - parquet___WriterProperties___Builder__version(builder, version); - return R_NilValue; - END_RCPP +void parquet___WriterProperties___Builder__version(const std::shared_ptr& builder, const parquet::ParquetVersion::type& version); +RcppExport SEXP _arrow_parquet___WriterProperties___Builder__version(SEXP builder_sexp, SEXP version_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type builder(builder_sexp); + Rcpp::traits::input_parameter::type version(version_sexp); + parquet___WriterProperties___Builder__version(builder, version); + return R_NilValue; +END_RCPP } #else -RcppExport SEXP _arrow_parquet___WriterProperties___Builder__version(SEXP builder_sexp, - SEXP version_sexp) { - Rf_error( - "Cannot call parquet___WriterProperties___Builder__version(). Please use " - "arrow::install_arrow() to install required runtime libraries. "); +RcppExport SEXP _arrow_parquet___WriterProperties___Builder__version(SEXP builder_sexp, SEXP version_sexp){ + Rf_error("Cannot call parquet___WriterProperties___Builder__version(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // parquet.cpp #if defined(ARROW_R_WITH_ARROW) -void parquet___ArrowWriterProperties___Builder__default_compression( - const std::shared_ptr& builder, - const arrow::Compression::type& compression); -RcppExport SEXP _arrow_parquet___ArrowWriterProperties___Builder__default_compression( - SEXP builder_sexp, SEXP compression_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter< - const std::shared_ptr&>::type - builder(builder_sexp); - Rcpp::traits::input_parameter::type compression( - compression_sexp); - parquet___ArrowWriterProperties___Builder__default_compression(builder, compression); - return R_NilValue; - END_RCPP +void parquet___ArrowWriterProperties___Builder__default_compression(const std::shared_ptr& builder, const arrow::Compression::type& compression); +RcppExport SEXP _arrow_parquet___ArrowWriterProperties___Builder__default_compression(SEXP builder_sexp, SEXP compression_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type builder(builder_sexp); + Rcpp::traits::input_parameter::type compression(compression_sexp); + parquet___ArrowWriterProperties___Builder__default_compression(builder, compression); + return R_NilValue; +END_RCPP } #else -RcppExport SEXP _arrow_parquet___ArrowWriterProperties___Builder__default_compression( - SEXP builder_sexp, SEXP compression_sexp) { - Rf_error( - "Cannot call parquet___ArrowWriterProperties___Builder__default_compression(). " - "Please use arrow::install_arrow() to install required runtime libraries. "); +RcppExport SEXP _arrow_parquet___ArrowWriterProperties___Builder__default_compression(SEXP builder_sexp, SEXP compression_sexp){ + Rf_error("Cannot call parquet___ArrowWriterProperties___Builder__default_compression(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // parquet.cpp #if defined(ARROW_R_WITH_ARROW) -void parquet___ArrowWriterProperties___Builder__set_compressions( - const std::shared_ptr& builder, - const std::vector& paths, const Rcpp::IntegerVector& types); -RcppExport SEXP _arrow_parquet___ArrowWriterProperties___Builder__set_compressions( - SEXP builder_sexp, SEXP paths_sexp, SEXP types_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter< - const std::shared_ptr&>::type - builder(builder_sexp); - Rcpp::traits::input_parameter&>::type paths(paths_sexp); - Rcpp::traits::input_parameter::type types(types_sexp); - parquet___ArrowWriterProperties___Builder__set_compressions(builder, paths, types); - return R_NilValue; - END_RCPP +void parquet___ArrowWriterProperties___Builder__set_compressions(const std::shared_ptr& builder, const std::vector& paths, const Rcpp::IntegerVector& types); +RcppExport SEXP _arrow_parquet___ArrowWriterProperties___Builder__set_compressions(SEXP builder_sexp, SEXP paths_sexp, SEXP types_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type builder(builder_sexp); + Rcpp::traits::input_parameter&>::type paths(paths_sexp); + Rcpp::traits::input_parameter::type types(types_sexp); + parquet___ArrowWriterProperties___Builder__set_compressions(builder, paths, types); + return R_NilValue; +END_RCPP } #else -RcppExport SEXP _arrow_parquet___ArrowWriterProperties___Builder__set_compressions( - SEXP builder_sexp, SEXP paths_sexp, SEXP types_sexp) { - Rf_error( - "Cannot call parquet___ArrowWriterProperties___Builder__set_compressions(). Please " - "use arrow::install_arrow() to install required runtime libraries. "); +RcppExport SEXP _arrow_parquet___ArrowWriterProperties___Builder__set_compressions(SEXP builder_sexp, SEXP paths_sexp, SEXP types_sexp){ + Rf_error("Cannot call parquet___ArrowWriterProperties___Builder__set_compressions(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // parquet.cpp #if defined(ARROW_R_WITH_ARROW) -void parquet___ArrowWriterProperties___Builder__default_compression_level( - const std::shared_ptr& builder, - int compression_level); -RcppExport SEXP -_arrow_parquet___ArrowWriterProperties___Builder__default_compression_level( - SEXP builder_sexp, SEXP compression_level_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter< - const std::shared_ptr&>::type - builder(builder_sexp); - Rcpp::traits::input_parameter::type compression_level(compression_level_sexp); - parquet___ArrowWriterProperties___Builder__default_compression_level(builder, - compression_level); - return R_NilValue; - END_RCPP -} -#else -RcppExport SEXP -_arrow_parquet___ArrowWriterProperties___Builder__default_compression_level( - SEXP builder_sexp, SEXP compression_level_sexp) { - Rf_error( - "Cannot call " - "parquet___ArrowWriterProperties___Builder__default_compression_level(). Please " - "use arrow::install_arrow() to install required runtime libraries. "); +void parquet___ArrowWriterProperties___Builder__default_compression_level(const std::shared_ptr& builder, int compression_level); +RcppExport SEXP _arrow_parquet___ArrowWriterProperties___Builder__default_compression_level(SEXP builder_sexp, SEXP compression_level_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type builder(builder_sexp); + Rcpp::traits::input_parameter::type compression_level(compression_level_sexp); + parquet___ArrowWriterProperties___Builder__default_compression_level(builder, compression_level); + return R_NilValue; +END_RCPP +} +#else +RcppExport SEXP _arrow_parquet___ArrowWriterProperties___Builder__default_compression_level(SEXP builder_sexp, SEXP compression_level_sexp){ + Rf_error("Cannot call parquet___ArrowWriterProperties___Builder__default_compression_level(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // parquet.cpp #if defined(ARROW_R_WITH_ARROW) -void parquet___ArrowWriterProperties___Builder__set_compression_levels( - const std::shared_ptr& builder, - const std::vector& paths, const Rcpp::IntegerVector& levels); -RcppExport SEXP _arrow_parquet___ArrowWriterProperties___Builder__set_compression_levels( - SEXP builder_sexp, SEXP paths_sexp, SEXP levels_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter< - const std::shared_ptr&>::type - builder(builder_sexp); - Rcpp::traits::input_parameter&>::type paths(paths_sexp); - Rcpp::traits::input_parameter::type levels(levels_sexp); - parquet___ArrowWriterProperties___Builder__set_compression_levels(builder, paths, - levels); - return R_NilValue; - END_RCPP +void parquet___ArrowWriterProperties___Builder__set_compression_levels(const std::shared_ptr& builder, const std::vector& paths, const Rcpp::IntegerVector& levels); +RcppExport SEXP _arrow_parquet___ArrowWriterProperties___Builder__set_compression_levels(SEXP builder_sexp, SEXP paths_sexp, SEXP levels_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type builder(builder_sexp); + Rcpp::traits::input_parameter&>::type paths(paths_sexp); + Rcpp::traits::input_parameter::type levels(levels_sexp); + parquet___ArrowWriterProperties___Builder__set_compression_levels(builder, paths, levels); + return R_NilValue; +END_RCPP } #else -RcppExport SEXP _arrow_parquet___ArrowWriterProperties___Builder__set_compression_levels( - SEXP builder_sexp, SEXP paths_sexp, SEXP levels_sexp) { - Rf_error( - "Cannot call parquet___ArrowWriterProperties___Builder__set_compression_levels(). " - "Please use arrow::install_arrow() to install required runtime libraries. "); +RcppExport SEXP _arrow_parquet___ArrowWriterProperties___Builder__set_compression_levels(SEXP builder_sexp, SEXP paths_sexp, SEXP levels_sexp){ + Rf_error("Cannot call parquet___ArrowWriterProperties___Builder__set_compression_levels(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // parquet.cpp #if defined(ARROW_R_WITH_ARROW) -void parquet___ArrowWriterProperties___Builder__default_write_statistics( - const std::shared_ptr& builder, - bool write_statistics); -RcppExport SEXP -_arrow_parquet___ArrowWriterProperties___Builder__default_write_statistics( - SEXP builder_sexp, SEXP write_statistics_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter< - const std::shared_ptr&>::type - builder(builder_sexp); - Rcpp::traits::input_parameter::type write_statistics(write_statistics_sexp); - parquet___ArrowWriterProperties___Builder__default_write_statistics(builder, - write_statistics); - return R_NilValue; - END_RCPP -} -#else -RcppExport SEXP -_arrow_parquet___ArrowWriterProperties___Builder__default_write_statistics( - SEXP builder_sexp, SEXP write_statistics_sexp) { - Rf_error( - "Cannot call " - "parquet___ArrowWriterProperties___Builder__default_write_statistics(). Please use " - "arrow::install_arrow() to install required runtime libraries. "); +void parquet___ArrowWriterProperties___Builder__default_write_statistics(const std::shared_ptr& builder, bool write_statistics); +RcppExport SEXP _arrow_parquet___ArrowWriterProperties___Builder__default_write_statistics(SEXP builder_sexp, SEXP write_statistics_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type builder(builder_sexp); + Rcpp::traits::input_parameter::type write_statistics(write_statistics_sexp); + parquet___ArrowWriterProperties___Builder__default_write_statistics(builder, write_statistics); + return R_NilValue; +END_RCPP +} +#else +RcppExport SEXP _arrow_parquet___ArrowWriterProperties___Builder__default_write_statistics(SEXP builder_sexp, SEXP write_statistics_sexp){ + Rf_error("Cannot call parquet___ArrowWriterProperties___Builder__default_write_statistics(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // parquet.cpp #if defined(ARROW_R_WITH_ARROW) -void parquet___ArrowWriterProperties___Builder__default_use_dictionary( - const std::shared_ptr& builder, - bool use_dictionary); -RcppExport SEXP _arrow_parquet___ArrowWriterProperties___Builder__default_use_dictionary( - SEXP builder_sexp, SEXP use_dictionary_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter< - const std::shared_ptr&>::type - builder(builder_sexp); - Rcpp::traits::input_parameter::type use_dictionary(use_dictionary_sexp); - parquet___ArrowWriterProperties___Builder__default_use_dictionary(builder, - use_dictionary); - return R_NilValue; - END_RCPP +void parquet___ArrowWriterProperties___Builder__default_use_dictionary(const std::shared_ptr& builder, bool use_dictionary); +RcppExport SEXP _arrow_parquet___ArrowWriterProperties___Builder__default_use_dictionary(SEXP builder_sexp, SEXP use_dictionary_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type builder(builder_sexp); + Rcpp::traits::input_parameter::type use_dictionary(use_dictionary_sexp); + parquet___ArrowWriterProperties___Builder__default_use_dictionary(builder, use_dictionary); + return R_NilValue; +END_RCPP } #else -RcppExport SEXP _arrow_parquet___ArrowWriterProperties___Builder__default_use_dictionary( - SEXP builder_sexp, SEXP use_dictionary_sexp) { - Rf_error( - "Cannot call parquet___ArrowWriterProperties___Builder__default_use_dictionary(). " - "Please use arrow::install_arrow() to install required runtime libraries. "); +RcppExport SEXP _arrow_parquet___ArrowWriterProperties___Builder__default_use_dictionary(SEXP builder_sexp, SEXP use_dictionary_sexp){ + Rf_error("Cannot call parquet___ArrowWriterProperties___Builder__default_use_dictionary(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // parquet.cpp #if defined(ARROW_R_WITH_ARROW) -void parquet___ArrowWriterProperties___Builder__set_use_dictionary( - const std::shared_ptr& builder, - const std::vector& paths, const Rcpp::LogicalVector& use_dictionary); -RcppExport SEXP _arrow_parquet___ArrowWriterProperties___Builder__set_use_dictionary( - SEXP builder_sexp, SEXP paths_sexp, SEXP use_dictionary_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter< - const std::shared_ptr&>::type - builder(builder_sexp); - Rcpp::traits::input_parameter&>::type paths(paths_sexp); - Rcpp::traits::input_parameter::type use_dictionary( - use_dictionary_sexp); - parquet___ArrowWriterProperties___Builder__set_use_dictionary(builder, paths, - use_dictionary); - return R_NilValue; - END_RCPP +void parquet___ArrowWriterProperties___Builder__set_use_dictionary(const std::shared_ptr& builder, const std::vector& paths, const Rcpp::LogicalVector& use_dictionary); +RcppExport SEXP _arrow_parquet___ArrowWriterProperties___Builder__set_use_dictionary(SEXP builder_sexp, SEXP paths_sexp, SEXP use_dictionary_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type builder(builder_sexp); + Rcpp::traits::input_parameter&>::type paths(paths_sexp); + Rcpp::traits::input_parameter::type use_dictionary(use_dictionary_sexp); + parquet___ArrowWriterProperties___Builder__set_use_dictionary(builder, paths, use_dictionary); + return R_NilValue; +END_RCPP } #else -RcppExport SEXP _arrow_parquet___ArrowWriterProperties___Builder__set_use_dictionary( - SEXP builder_sexp, SEXP paths_sexp, SEXP use_dictionary_sexp) { - Rf_error( - "Cannot call parquet___ArrowWriterProperties___Builder__set_use_dictionary(). " - "Please use arrow::install_arrow() to install required runtime libraries. "); +RcppExport SEXP _arrow_parquet___ArrowWriterProperties___Builder__set_use_dictionary(SEXP builder_sexp, SEXP paths_sexp, SEXP use_dictionary_sexp){ + Rf_error("Cannot call parquet___ArrowWriterProperties___Builder__set_use_dictionary(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // parquet.cpp #if defined(ARROW_R_WITH_ARROW) -void parquet___ArrowWriterProperties___Builder__set_write_statistics( - const std::shared_ptr& builder, - const std::vector& paths, const Rcpp::LogicalVector& write_statistics); -RcppExport SEXP _arrow_parquet___ArrowWriterProperties___Builder__set_write_statistics( - SEXP builder_sexp, SEXP paths_sexp, SEXP write_statistics_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter< - const std::shared_ptr&>::type - builder(builder_sexp); - Rcpp::traits::input_parameter&>::type paths(paths_sexp); - Rcpp::traits::input_parameter::type write_statistics( - write_statistics_sexp); - parquet___ArrowWriterProperties___Builder__set_write_statistics(builder, paths, - write_statistics); - return R_NilValue; - END_RCPP +void parquet___ArrowWriterProperties___Builder__set_write_statistics(const std::shared_ptr& builder, const std::vector& paths, const Rcpp::LogicalVector& write_statistics); +RcppExport SEXP _arrow_parquet___ArrowWriterProperties___Builder__set_write_statistics(SEXP builder_sexp, SEXP paths_sexp, SEXP write_statistics_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type builder(builder_sexp); + Rcpp::traits::input_parameter&>::type paths(paths_sexp); + Rcpp::traits::input_parameter::type write_statistics(write_statistics_sexp); + parquet___ArrowWriterProperties___Builder__set_write_statistics(builder, paths, write_statistics); + return R_NilValue; +END_RCPP } #else -RcppExport SEXP _arrow_parquet___ArrowWriterProperties___Builder__set_write_statistics( - SEXP builder_sexp, SEXP paths_sexp, SEXP write_statistics_sexp) { - Rf_error( - "Cannot call parquet___ArrowWriterProperties___Builder__set_write_statistics(). " - "Please use arrow::install_arrow() to install required runtime libraries. "); +RcppExport SEXP _arrow_parquet___ArrowWriterProperties___Builder__set_write_statistics(SEXP builder_sexp, SEXP paths_sexp, SEXP write_statistics_sexp){ + Rf_error("Cannot call parquet___ArrowWriterProperties___Builder__set_write_statistics(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // parquet.cpp #if defined(ARROW_R_WITH_ARROW) -void parquet___ArrowWriterProperties___Builder__data_page_size( - const std::shared_ptr& builder, - int64_t data_page_size); -RcppExport SEXP _arrow_parquet___ArrowWriterProperties___Builder__data_page_size( - SEXP builder_sexp, SEXP data_page_size_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter< - const std::shared_ptr&>::type - builder(builder_sexp); - Rcpp::traits::input_parameter::type data_page_size(data_page_size_sexp); - parquet___ArrowWriterProperties___Builder__data_page_size(builder, data_page_size); - return R_NilValue; - END_RCPP +void parquet___ArrowWriterProperties___Builder__data_page_size(const std::shared_ptr& builder, int64_t data_page_size); +RcppExport SEXP _arrow_parquet___ArrowWriterProperties___Builder__data_page_size(SEXP builder_sexp, SEXP data_page_size_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type builder(builder_sexp); + Rcpp::traits::input_parameter::type data_page_size(data_page_size_sexp); + parquet___ArrowWriterProperties___Builder__data_page_size(builder, data_page_size); + return R_NilValue; +END_RCPP } #else -RcppExport SEXP _arrow_parquet___ArrowWriterProperties___Builder__data_page_size( - SEXP builder_sexp, SEXP data_page_size_sexp) { - Rf_error( - "Cannot call parquet___ArrowWriterProperties___Builder__data_page_size(). Please " - "use arrow::install_arrow() to install required runtime libraries. "); +RcppExport SEXP _arrow_parquet___ArrowWriterProperties___Builder__data_page_size(SEXP builder_sexp, SEXP data_page_size_sexp){ + Rf_error("Cannot call parquet___ArrowWriterProperties___Builder__data_page_size(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // parquet.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr parquet___WriterProperties___Builder__build( - const std::shared_ptr& builder); -RcppExport SEXP _arrow_parquet___WriterProperties___Builder__build(SEXP builder_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter< - const std::shared_ptr&>::type - builder(builder_sexp); - return Rcpp::wrap(parquet___WriterProperties___Builder__build(builder)); - END_RCPP +std::shared_ptr parquet___WriterProperties___Builder__build(const std::shared_ptr& builder); +RcppExport SEXP _arrow_parquet___WriterProperties___Builder__build(SEXP builder_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type builder(builder_sexp); + return Rcpp::wrap(parquet___WriterProperties___Builder__build(builder)); +END_RCPP } #else -RcppExport SEXP _arrow_parquet___WriterProperties___Builder__build(SEXP builder_sexp) { - Rf_error( - "Cannot call parquet___WriterProperties___Builder__build(). Please use " - "arrow::install_arrow() to install required runtime libraries. "); +RcppExport SEXP _arrow_parquet___WriterProperties___Builder__build(SEXP builder_sexp){ + Rf_error("Cannot call parquet___WriterProperties___Builder__build(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // parquet.cpp #if defined(ARROW_R_WITH_ARROW) -std::unique_ptr parquet___arrow___ParquetFileWriter__Open( - const std::shared_ptr& schema, - const std::shared_ptr& sink, - const std::shared_ptr& properties, - const std::shared_ptr& arrow_properties); -RcppExport SEXP _arrow_parquet___arrow___ParquetFileWriter__Open( - SEXP schema_sexp, SEXP sink_sexp, SEXP properties_sexp, SEXP arrow_properties_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type schema( - schema_sexp); - Rcpp::traits::input_parameter&>::type - sink(sink_sexp); - Rcpp::traits::input_parameter&>::type - properties(properties_sexp); - Rcpp::traits::input_parameter&>:: - type arrow_properties(arrow_properties_sexp); - return Rcpp::wrap(parquet___arrow___ParquetFileWriter__Open(schema, sink, properties, - arrow_properties)); - END_RCPP -} -#else -RcppExport SEXP _arrow_parquet___arrow___ParquetFileWriter__Open( - SEXP schema_sexp, SEXP sink_sexp, SEXP properties_sexp, SEXP arrow_properties_sexp) { - Rf_error( - "Cannot call parquet___arrow___ParquetFileWriter__Open(). Please use " - "arrow::install_arrow() to install required runtime libraries. "); +std::unique_ptr parquet___arrow___ParquetFileWriter__Open(const std::shared_ptr& schema, const std::shared_ptr& sink, const std::shared_ptr& properties, const std::shared_ptr& arrow_properties); +RcppExport SEXP _arrow_parquet___arrow___ParquetFileWriter__Open(SEXP schema_sexp, SEXP sink_sexp, SEXP properties_sexp, SEXP arrow_properties_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type schema(schema_sexp); + Rcpp::traits::input_parameter&>::type sink(sink_sexp); + Rcpp::traits::input_parameter&>::type properties(properties_sexp); + Rcpp::traits::input_parameter&>::type arrow_properties(arrow_properties_sexp); + return Rcpp::wrap(parquet___arrow___ParquetFileWriter__Open(schema, sink, properties, arrow_properties)); +END_RCPP +} +#else +RcppExport SEXP _arrow_parquet___arrow___ParquetFileWriter__Open(SEXP schema_sexp, SEXP sink_sexp, SEXP properties_sexp, SEXP arrow_properties_sexp){ + Rf_error("Cannot call parquet___arrow___ParquetFileWriter__Open(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // parquet.cpp #if defined(ARROW_R_WITH_ARROW) -void parquet___arrow___FileWriter__WriteTable( - const std::unique_ptr& writer, - const std::shared_ptr& table, int64_t chunk_size); -RcppExport SEXP _arrow_parquet___arrow___FileWriter__WriteTable(SEXP writer_sexp, - SEXP table_sexp, - SEXP chunk_size_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type - writer(writer_sexp); - Rcpp::traits::input_parameter&>::type table( - table_sexp); - Rcpp::traits::input_parameter::type chunk_size(chunk_size_sexp); - parquet___arrow___FileWriter__WriteTable(writer, table, chunk_size); - return R_NilValue; - END_RCPP +void parquet___arrow___FileWriter__WriteTable(const std::unique_ptr& writer, const std::shared_ptr& table, int64_t chunk_size); +RcppExport SEXP _arrow_parquet___arrow___FileWriter__WriteTable(SEXP writer_sexp, SEXP table_sexp, SEXP chunk_size_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type writer(writer_sexp); + Rcpp::traits::input_parameter&>::type table(table_sexp); + Rcpp::traits::input_parameter::type chunk_size(chunk_size_sexp); + parquet___arrow___FileWriter__WriteTable(writer, table, chunk_size); + return R_NilValue; +END_RCPP } #else -RcppExport SEXP _arrow_parquet___arrow___FileWriter__WriteTable(SEXP writer_sexp, - SEXP table_sexp, - SEXP chunk_size_sexp) { - Rf_error( - "Cannot call parquet___arrow___FileWriter__WriteTable(). Please use " - "arrow::install_arrow() to install required runtime libraries. "); +RcppExport SEXP _arrow_parquet___arrow___FileWriter__WriteTable(SEXP writer_sexp, SEXP table_sexp, SEXP chunk_size_sexp){ + Rf_error("Cannot call parquet___arrow___FileWriter__WriteTable(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // parquet.cpp #if defined(ARROW_R_WITH_ARROW) -void parquet___arrow___FileWriter__Close( - const std::unique_ptr& writer); -RcppExport SEXP _arrow_parquet___arrow___FileWriter__Close(SEXP writer_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type - writer(writer_sexp); - parquet___arrow___FileWriter__Close(writer); - return R_NilValue; - END_RCPP +void parquet___arrow___FileWriter__Close(const std::unique_ptr& writer); +RcppExport SEXP _arrow_parquet___arrow___FileWriter__Close(SEXP writer_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type writer(writer_sexp); + parquet___arrow___FileWriter__Close(writer); + return R_NilValue; +END_RCPP } #else -RcppExport SEXP _arrow_parquet___arrow___FileWriter__Close(SEXP writer_sexp) { - Rf_error( - "Cannot call parquet___arrow___FileWriter__Close(). Please use " - "arrow::install_arrow() to install required runtime libraries. "); +RcppExport SEXP _arrow_parquet___arrow___FileWriter__Close(SEXP writer_sexp){ + Rf_error("Cannot call parquet___arrow___FileWriter__Close(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // parquet.cpp #if defined(ARROW_R_WITH_ARROW) -void parquet___arrow___WriteTable( - const std::shared_ptr& table, - const std::shared_ptr& sink, - const std::shared_ptr& properties, - const std::shared_ptr& arrow_properties); -RcppExport SEXP _arrow_parquet___arrow___WriteTable(SEXP table_sexp, SEXP sink_sexp, - SEXP properties_sexp, - SEXP arrow_properties_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type table( - table_sexp); - Rcpp::traits::input_parameter&>::type - sink(sink_sexp); - Rcpp::traits::input_parameter&>::type - properties(properties_sexp); - Rcpp::traits::input_parameter&>:: - type arrow_properties(arrow_properties_sexp); - parquet___arrow___WriteTable(table, sink, properties, arrow_properties); - return R_NilValue; - END_RCPP -} -#else -RcppExport SEXP _arrow_parquet___arrow___WriteTable(SEXP table_sexp, SEXP sink_sexp, - SEXP properties_sexp, - SEXP arrow_properties_sexp) { - Rf_error( - "Cannot call parquet___arrow___WriteTable(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +void parquet___arrow___WriteTable(const std::shared_ptr& table, const std::shared_ptr& sink, const std::shared_ptr& properties, const std::shared_ptr& arrow_properties); +RcppExport SEXP _arrow_parquet___arrow___WriteTable(SEXP table_sexp, SEXP sink_sexp, SEXP properties_sexp, SEXP arrow_properties_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type table(table_sexp); + Rcpp::traits::input_parameter&>::type sink(sink_sexp); + Rcpp::traits::input_parameter&>::type properties(properties_sexp); + Rcpp::traits::input_parameter&>::type arrow_properties(arrow_properties_sexp); + parquet___arrow___WriteTable(table, sink, properties, arrow_properties); + return R_NilValue; +END_RCPP +} +#else +RcppExport SEXP _arrow_parquet___arrow___WriteTable(SEXP table_sexp, SEXP sink_sexp, SEXP properties_sexp, SEXP arrow_properties_sexp){ + Rf_error("Cannot call parquet___arrow___WriteTable(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // parquet.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr parquet___arrow___FileReader__GetSchema( - const std::unique_ptr& reader); -RcppExport SEXP _arrow_parquet___arrow___FileReader__GetSchema(SEXP reader_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type - reader(reader_sexp); - return Rcpp::wrap(parquet___arrow___FileReader__GetSchema(reader)); - END_RCPP +std::shared_ptr parquet___arrow___FileReader__GetSchema(const std::unique_ptr& reader); +RcppExport SEXP _arrow_parquet___arrow___FileReader__GetSchema(SEXP reader_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type reader(reader_sexp); + return Rcpp::wrap(parquet___arrow___FileReader__GetSchema(reader)); +END_RCPP } #else -RcppExport SEXP _arrow_parquet___arrow___FileReader__GetSchema(SEXP reader_sexp) { - Rf_error( - "Cannot call parquet___arrow___FileReader__GetSchema(). Please use " - "arrow::install_arrow() to install required runtime libraries. "); +RcppExport SEXP _arrow_parquet___arrow___FileReader__GetSchema(SEXP reader_sexp){ + Rf_error("Cannot call parquet___arrow___FileReader__GetSchema(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // recordbatch.cpp #if defined(ARROW_R_WITH_ARROW) int RecordBatch__num_columns(const std::shared_ptr& x); -RcppExport SEXP _arrow_RecordBatch__num_columns(SEXP x_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type x( - x_sexp); - return Rcpp::wrap(RecordBatch__num_columns(x)); - END_RCPP +RcppExport SEXP _arrow_RecordBatch__num_columns(SEXP x_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type x(x_sexp); + return Rcpp::wrap(RecordBatch__num_columns(x)); +END_RCPP } #else -RcppExport SEXP _arrow_RecordBatch__num_columns(SEXP x_sexp) { - Rf_error( - "Cannot call RecordBatch__num_columns(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_RecordBatch__num_columns(SEXP x_sexp){ + Rf_error("Cannot call RecordBatch__num_columns(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // recordbatch.cpp #if defined(ARROW_R_WITH_ARROW) int RecordBatch__num_rows(const std::shared_ptr& x); -RcppExport SEXP _arrow_RecordBatch__num_rows(SEXP x_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type x( - x_sexp); - return Rcpp::wrap(RecordBatch__num_rows(x)); - END_RCPP +RcppExport SEXP _arrow_RecordBatch__num_rows(SEXP x_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type x(x_sexp); + return Rcpp::wrap(RecordBatch__num_rows(x)); +END_RCPP } #else -RcppExport SEXP _arrow_RecordBatch__num_rows(SEXP x_sexp) { - Rf_error( - "Cannot call RecordBatch__num_rows(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_RecordBatch__num_rows(SEXP x_sexp){ + Rf_error("Cannot call RecordBatch__num_rows(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // recordbatch.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr RecordBatch__schema( - const std::shared_ptr& x); -RcppExport SEXP _arrow_RecordBatch__schema(SEXP x_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type x( - x_sexp); - return Rcpp::wrap(RecordBatch__schema(x)); - END_RCPP +std::shared_ptr RecordBatch__schema(const std::shared_ptr& x); +RcppExport SEXP _arrow_RecordBatch__schema(SEXP x_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type x(x_sexp); + return Rcpp::wrap(RecordBatch__schema(x)); +END_RCPP } #else -RcppExport SEXP _arrow_RecordBatch__schema(SEXP x_sexp) { - Rf_error( - "Cannot call RecordBatch__schema(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_RecordBatch__schema(SEXP x_sexp){ + Rf_error("Cannot call RecordBatch__schema(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // recordbatch.cpp #if defined(ARROW_R_WITH_ARROW) arrow::ArrayVector RecordBatch__columns(const std::shared_ptr& batch); -RcppExport SEXP _arrow_RecordBatch__columns(SEXP batch_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type batch( - batch_sexp); - return Rcpp::wrap(RecordBatch__columns(batch)); - END_RCPP +RcppExport SEXP _arrow_RecordBatch__columns(SEXP batch_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type batch(batch_sexp); + return Rcpp::wrap(RecordBatch__columns(batch)); +END_RCPP } #else -RcppExport SEXP _arrow_RecordBatch__columns(SEXP batch_sexp) { - Rf_error( - "Cannot call RecordBatch__columns(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_RecordBatch__columns(SEXP batch_sexp){ + Rf_error("Cannot call RecordBatch__columns(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // recordbatch.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr RecordBatch__column( - const std::shared_ptr& batch, int i); -RcppExport SEXP _arrow_RecordBatch__column(SEXP batch_sexp, SEXP i_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type batch( - batch_sexp); - Rcpp::traits::input_parameter::type i(i_sexp); - return Rcpp::wrap(RecordBatch__column(batch, i)); - END_RCPP +std::shared_ptr RecordBatch__column(const std::shared_ptr& batch, int i); +RcppExport SEXP _arrow_RecordBatch__column(SEXP batch_sexp, SEXP i_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type batch(batch_sexp); + Rcpp::traits::input_parameter::type i(i_sexp); + return Rcpp::wrap(RecordBatch__column(batch, i)); +END_RCPP } #else -RcppExport SEXP _arrow_RecordBatch__column(SEXP batch_sexp, SEXP i_sexp) { - Rf_error( - "Cannot call RecordBatch__column(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_RecordBatch__column(SEXP batch_sexp, SEXP i_sexp){ + Rf_error("Cannot call RecordBatch__column(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // recordbatch.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr RecordBatch__GetColumnByName( - const std::shared_ptr& batch, const std::string& name); -RcppExport SEXP _arrow_RecordBatch__GetColumnByName(SEXP batch_sexp, SEXP name_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type batch( - batch_sexp); - Rcpp::traits::input_parameter::type name(name_sexp); - return Rcpp::wrap(RecordBatch__GetColumnByName(batch, name)); - END_RCPP +std::shared_ptr RecordBatch__GetColumnByName(const std::shared_ptr& batch, const std::string& name); +RcppExport SEXP _arrow_RecordBatch__GetColumnByName(SEXP batch_sexp, SEXP name_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type batch(batch_sexp); + Rcpp::traits::input_parameter::type name(name_sexp); + return Rcpp::wrap(RecordBatch__GetColumnByName(batch, name)); +END_RCPP } #else -RcppExport SEXP _arrow_RecordBatch__GetColumnByName(SEXP batch_sexp, SEXP name_sexp) { - Rf_error( - "Cannot call RecordBatch__GetColumnByName(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_RecordBatch__GetColumnByName(SEXP batch_sexp, SEXP name_sexp){ + Rf_error("Cannot call RecordBatch__GetColumnByName(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // recordbatch.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr RecordBatch__select( - const std::shared_ptr& batch, const Rcpp::IntegerVector& indices); -RcppExport SEXP _arrow_RecordBatch__select(SEXP batch_sexp, SEXP indices_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type batch( - batch_sexp); - Rcpp::traits::input_parameter::type indices(indices_sexp); - return Rcpp::wrap(RecordBatch__select(batch, indices)); - END_RCPP +std::shared_ptr RecordBatch__select(const std::shared_ptr& batch, const Rcpp::IntegerVector& indices); +RcppExport SEXP _arrow_RecordBatch__select(SEXP batch_sexp, SEXP indices_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type batch(batch_sexp); + Rcpp::traits::input_parameter::type indices(indices_sexp); + return Rcpp::wrap(RecordBatch__select(batch, indices)); +END_RCPP } #else -RcppExport SEXP _arrow_RecordBatch__select(SEXP batch_sexp, SEXP indices_sexp) { - Rf_error( - "Cannot call RecordBatch__select(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_RecordBatch__select(SEXP batch_sexp, SEXP indices_sexp){ + Rf_error("Cannot call RecordBatch__select(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // recordbatch.cpp #if defined(ARROW_R_WITH_ARROW) std::shared_ptr RecordBatch__from_dataframe(Rcpp::DataFrame tbl); -RcppExport SEXP _arrow_RecordBatch__from_dataframe(SEXP tbl_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter::type tbl(tbl_sexp); - return Rcpp::wrap(RecordBatch__from_dataframe(tbl)); - END_RCPP +RcppExport SEXP _arrow_RecordBatch__from_dataframe(SEXP tbl_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter::type tbl(tbl_sexp); + return Rcpp::wrap(RecordBatch__from_dataframe(tbl)); +END_RCPP } #else -RcppExport SEXP _arrow_RecordBatch__from_dataframe(SEXP tbl_sexp) { - Rf_error( - "Cannot call RecordBatch__from_dataframe(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_RecordBatch__from_dataframe(SEXP tbl_sexp){ + Rf_error("Cannot call RecordBatch__from_dataframe(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // recordbatch.cpp #if defined(ARROW_R_WITH_ARROW) -bool RecordBatch__Equals(const std::shared_ptr& self, - const std::shared_ptr& other); -RcppExport SEXP _arrow_RecordBatch__Equals(SEXP self_sexp, SEXP other_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type self( - self_sexp); - Rcpp::traits::input_parameter&>::type other( - other_sexp); - return Rcpp::wrap(RecordBatch__Equals(self, other)); - END_RCPP +bool RecordBatch__Equals(const std::shared_ptr& self, const std::shared_ptr& other); +RcppExport SEXP _arrow_RecordBatch__Equals(SEXP self_sexp, SEXP other_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type self(self_sexp); + Rcpp::traits::input_parameter&>::type other(other_sexp); + return Rcpp::wrap(RecordBatch__Equals(self, other)); +END_RCPP } #else -RcppExport SEXP _arrow_RecordBatch__Equals(SEXP self_sexp, SEXP other_sexp) { - Rf_error( - "Cannot call RecordBatch__Equals(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_RecordBatch__Equals(SEXP self_sexp, SEXP other_sexp){ + Rf_error("Cannot call RecordBatch__Equals(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // recordbatch.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr RecordBatch__RemoveColumn( - const std::shared_ptr& batch, int i); -RcppExport SEXP _arrow_RecordBatch__RemoveColumn(SEXP batch_sexp, SEXP i_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type batch( - batch_sexp); - Rcpp::traits::input_parameter::type i(i_sexp); - return Rcpp::wrap(RecordBatch__RemoveColumn(batch, i)); - END_RCPP +std::shared_ptr RecordBatch__RemoveColumn(const std::shared_ptr& batch, int i); +RcppExport SEXP _arrow_RecordBatch__RemoveColumn(SEXP batch_sexp, SEXP i_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type batch(batch_sexp); + Rcpp::traits::input_parameter::type i(i_sexp); + return Rcpp::wrap(RecordBatch__RemoveColumn(batch, i)); +END_RCPP } #else -RcppExport SEXP _arrow_RecordBatch__RemoveColumn(SEXP batch_sexp, SEXP i_sexp) { - Rf_error( - "Cannot call RecordBatch__RemoveColumn(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_RecordBatch__RemoveColumn(SEXP batch_sexp, SEXP i_sexp){ + Rf_error("Cannot call RecordBatch__RemoveColumn(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // recordbatch.cpp #if defined(ARROW_R_WITH_ARROW) -std::string RecordBatch__column_name(const std::shared_ptr& batch, - int i); -RcppExport SEXP _arrow_RecordBatch__column_name(SEXP batch_sexp, SEXP i_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type batch( - batch_sexp); - Rcpp::traits::input_parameter::type i(i_sexp); - return Rcpp::wrap(RecordBatch__column_name(batch, i)); - END_RCPP +std::string RecordBatch__column_name(const std::shared_ptr& batch, int i); +RcppExport SEXP _arrow_RecordBatch__column_name(SEXP batch_sexp, SEXP i_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type batch(batch_sexp); + Rcpp::traits::input_parameter::type i(i_sexp); + return Rcpp::wrap(RecordBatch__column_name(batch, i)); +END_RCPP } #else -RcppExport SEXP _arrow_RecordBatch__column_name(SEXP batch_sexp, SEXP i_sexp) { - Rf_error( - "Cannot call RecordBatch__column_name(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_RecordBatch__column_name(SEXP batch_sexp, SEXP i_sexp){ + Rf_error("Cannot call RecordBatch__column_name(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // recordbatch.cpp #if defined(ARROW_R_WITH_ARROW) -Rcpp::CharacterVector RecordBatch__names( - const std::shared_ptr& batch); -RcppExport SEXP _arrow_RecordBatch__names(SEXP batch_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type batch( - batch_sexp); - return Rcpp::wrap(RecordBatch__names(batch)); - END_RCPP +Rcpp::CharacterVector RecordBatch__names(const std::shared_ptr& batch); +RcppExport SEXP _arrow_RecordBatch__names(SEXP batch_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type batch(batch_sexp); + return Rcpp::wrap(RecordBatch__names(batch)); +END_RCPP } #else -RcppExport SEXP _arrow_RecordBatch__names(SEXP batch_sexp) { - Rf_error( - "Cannot call RecordBatch__names(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_RecordBatch__names(SEXP batch_sexp){ + Rf_error("Cannot call RecordBatch__names(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // recordbatch.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr RecordBatch__Slice1( - const std::shared_ptr& self, int offset); -RcppExport SEXP _arrow_RecordBatch__Slice1(SEXP self_sexp, SEXP offset_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type self( - self_sexp); - Rcpp::traits::input_parameter::type offset(offset_sexp); - return Rcpp::wrap(RecordBatch__Slice1(self, offset)); - END_RCPP +std::shared_ptr RecordBatch__Slice1(const std::shared_ptr& self, int offset); +RcppExport SEXP _arrow_RecordBatch__Slice1(SEXP self_sexp, SEXP offset_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type self(self_sexp); + Rcpp::traits::input_parameter::type offset(offset_sexp); + return Rcpp::wrap(RecordBatch__Slice1(self, offset)); +END_RCPP } #else -RcppExport SEXP _arrow_RecordBatch__Slice1(SEXP self_sexp, SEXP offset_sexp) { - Rf_error( - "Cannot call RecordBatch__Slice1(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_RecordBatch__Slice1(SEXP self_sexp, SEXP offset_sexp){ + Rf_error("Cannot call RecordBatch__Slice1(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // recordbatch.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr RecordBatch__Slice2( - const std::shared_ptr& self, int offset, int length); -RcppExport SEXP _arrow_RecordBatch__Slice2(SEXP self_sexp, SEXP offset_sexp, - SEXP length_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type self( - self_sexp); - Rcpp::traits::input_parameter::type offset(offset_sexp); - Rcpp::traits::input_parameter::type length(length_sexp); - return Rcpp::wrap(RecordBatch__Slice2(self, offset, length)); - END_RCPP +std::shared_ptr RecordBatch__Slice2(const std::shared_ptr& self, int offset, int length); +RcppExport SEXP _arrow_RecordBatch__Slice2(SEXP self_sexp, SEXP offset_sexp, SEXP length_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type self(self_sexp); + Rcpp::traits::input_parameter::type offset(offset_sexp); + Rcpp::traits::input_parameter::type length(length_sexp); + return Rcpp::wrap(RecordBatch__Slice2(self, offset, length)); +END_RCPP } #else -RcppExport SEXP _arrow_RecordBatch__Slice2(SEXP self_sexp, SEXP offset_sexp, - SEXP length_sexp) { - Rf_error( - "Cannot call RecordBatch__Slice2(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_RecordBatch__Slice2(SEXP self_sexp, SEXP offset_sexp, SEXP length_sexp){ + Rf_error("Cannot call RecordBatch__Slice2(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // recordbatch.cpp #if defined(ARROW_R_WITH_ARROW) -Rcpp::RawVector ipc___SerializeRecordBatch__Raw( - const std::shared_ptr& batch); -RcppExport SEXP _arrow_ipc___SerializeRecordBatch__Raw(SEXP batch_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type batch( - batch_sexp); - return Rcpp::wrap(ipc___SerializeRecordBatch__Raw(batch)); - END_RCPP +Rcpp::RawVector ipc___SerializeRecordBatch__Raw(const std::shared_ptr& batch); +RcppExport SEXP _arrow_ipc___SerializeRecordBatch__Raw(SEXP batch_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type batch(batch_sexp); + return Rcpp::wrap(ipc___SerializeRecordBatch__Raw(batch)); +END_RCPP } #else -RcppExport SEXP _arrow_ipc___SerializeRecordBatch__Raw(SEXP batch_sexp) { - Rf_error( - "Cannot call ipc___SerializeRecordBatch__Raw(). Please use arrow::install_arrow() " - "to install required runtime libraries. "); +RcppExport SEXP _arrow_ipc___SerializeRecordBatch__Raw(SEXP batch_sexp){ + Rf_error("Cannot call ipc___SerializeRecordBatch__Raw(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // recordbatch.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr ipc___ReadRecordBatch__InputStream__Schema( - const std::shared_ptr& stream, - const std::shared_ptr& schema); -RcppExport SEXP _arrow_ipc___ReadRecordBatch__InputStream__Schema(SEXP stream_sexp, - SEXP schema_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type - stream(stream_sexp); - Rcpp::traits::input_parameter&>::type schema( - schema_sexp); - return Rcpp::wrap(ipc___ReadRecordBatch__InputStream__Schema(stream, schema)); - END_RCPP +std::shared_ptr ipc___ReadRecordBatch__InputStream__Schema(const std::shared_ptr& stream, const std::shared_ptr& schema); +RcppExport SEXP _arrow_ipc___ReadRecordBatch__InputStream__Schema(SEXP stream_sexp, SEXP schema_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type stream(stream_sexp); + Rcpp::traits::input_parameter&>::type schema(schema_sexp); + return Rcpp::wrap(ipc___ReadRecordBatch__InputStream__Schema(stream, schema)); +END_RCPP } #else -RcppExport SEXP _arrow_ipc___ReadRecordBatch__InputStream__Schema(SEXP stream_sexp, - SEXP schema_sexp) { - Rf_error( - "Cannot call ipc___ReadRecordBatch__InputStream__Schema(). Please use " - "arrow::install_arrow() to install required runtime libraries. "); +RcppExport SEXP _arrow_ipc___ReadRecordBatch__InputStream__Schema(SEXP stream_sexp, SEXP schema_sexp){ + Rf_error("Cannot call ipc___ReadRecordBatch__InputStream__Schema(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // recordbatch.cpp #if defined(ARROW_R_WITH_ARROW) std::shared_ptr RecordBatch__from_arrays(SEXP schema_sxp, SEXP lst); -RcppExport SEXP _arrow_RecordBatch__from_arrays(SEXP schema_sxp_sexp, SEXP lst_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter::type schema_sxp(schema_sxp_sexp); - Rcpp::traits::input_parameter::type lst(lst_sexp); - return Rcpp::wrap(RecordBatch__from_arrays(schema_sxp, lst)); - END_RCPP +RcppExport SEXP _arrow_RecordBatch__from_arrays(SEXP schema_sxp_sexp, SEXP lst_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter::type schema_sxp(schema_sxp_sexp); + Rcpp::traits::input_parameter::type lst(lst_sexp); + return Rcpp::wrap(RecordBatch__from_arrays(schema_sxp, lst)); +END_RCPP } #else -RcppExport SEXP _arrow_RecordBatch__from_arrays(SEXP schema_sxp_sexp, SEXP lst_sexp) { - Rf_error( - "Cannot call RecordBatch__from_arrays(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_RecordBatch__from_arrays(SEXP schema_sxp_sexp, SEXP lst_sexp){ + Rf_error("Cannot call RecordBatch__from_arrays(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // recordbatchreader.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr RecordBatchReader__schema( - const std::shared_ptr& reader); -RcppExport SEXP _arrow_RecordBatchReader__schema(SEXP reader_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type - reader(reader_sexp); - return Rcpp::wrap(RecordBatchReader__schema(reader)); - END_RCPP +std::shared_ptr RecordBatchReader__schema(const std::shared_ptr& reader); +RcppExport SEXP _arrow_RecordBatchReader__schema(SEXP reader_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type reader(reader_sexp); + return Rcpp::wrap(RecordBatchReader__schema(reader)); +END_RCPP } #else -RcppExport SEXP _arrow_RecordBatchReader__schema(SEXP reader_sexp) { - Rf_error( - "Cannot call RecordBatchReader__schema(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_RecordBatchReader__schema(SEXP reader_sexp){ + Rf_error("Cannot call RecordBatchReader__schema(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // recordbatchreader.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr RecordBatchReader__ReadNext( - const std::shared_ptr& reader); -RcppExport SEXP _arrow_RecordBatchReader__ReadNext(SEXP reader_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type - reader(reader_sexp); - return Rcpp::wrap(RecordBatchReader__ReadNext(reader)); - END_RCPP +std::shared_ptr RecordBatchReader__ReadNext(const std::shared_ptr& reader); +RcppExport SEXP _arrow_RecordBatchReader__ReadNext(SEXP reader_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type reader(reader_sexp); + return Rcpp::wrap(RecordBatchReader__ReadNext(reader)); +END_RCPP } #else -RcppExport SEXP _arrow_RecordBatchReader__ReadNext(SEXP reader_sexp) { - Rf_error( - "Cannot call RecordBatchReader__ReadNext(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_RecordBatchReader__ReadNext(SEXP reader_sexp){ + Rf_error("Cannot call RecordBatchReader__ReadNext(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // recordbatchreader.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr ipc___RecordBatchStreamReader__Open( - const std::shared_ptr& stream); -RcppExport SEXP _arrow_ipc___RecordBatchStreamReader__Open(SEXP stream_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type - stream(stream_sexp); - return Rcpp::wrap(ipc___RecordBatchStreamReader__Open(stream)); - END_RCPP +std::shared_ptr ipc___RecordBatchStreamReader__Open(const std::shared_ptr& stream); +RcppExport SEXP _arrow_ipc___RecordBatchStreamReader__Open(SEXP stream_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type stream(stream_sexp); + return Rcpp::wrap(ipc___RecordBatchStreamReader__Open(stream)); +END_RCPP } #else -RcppExport SEXP _arrow_ipc___RecordBatchStreamReader__Open(SEXP stream_sexp) { - Rf_error( - "Cannot call ipc___RecordBatchStreamReader__Open(). Please use " - "arrow::install_arrow() to install required runtime libraries. "); +RcppExport SEXP _arrow_ipc___RecordBatchStreamReader__Open(SEXP stream_sexp){ + Rf_error("Cannot call ipc___RecordBatchStreamReader__Open(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // recordbatchreader.cpp #if defined(ARROW_R_WITH_ARROW) -std::vector> ipc___RecordBatchStreamReader__batches( - const std::shared_ptr& reader); -RcppExport SEXP _arrow_ipc___RecordBatchStreamReader__batches(SEXP reader_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter< - const std::shared_ptr&>::type - reader(reader_sexp); - return Rcpp::wrap(ipc___RecordBatchStreamReader__batches(reader)); - END_RCPP +std::vector> ipc___RecordBatchStreamReader__batches(const std::shared_ptr& reader); +RcppExport SEXP _arrow_ipc___RecordBatchStreamReader__batches(SEXP reader_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type reader(reader_sexp); + return Rcpp::wrap(ipc___RecordBatchStreamReader__batches(reader)); +END_RCPP } #else -RcppExport SEXP _arrow_ipc___RecordBatchStreamReader__batches(SEXP reader_sexp) { - Rf_error( - "Cannot call ipc___RecordBatchStreamReader__batches(). Please use " - "arrow::install_arrow() to install required runtime libraries. "); +RcppExport SEXP _arrow_ipc___RecordBatchStreamReader__batches(SEXP reader_sexp){ + Rf_error("Cannot call ipc___RecordBatchStreamReader__batches(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // recordbatchreader.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr ipc___RecordBatchFileReader__schema( - const std::shared_ptr& reader); -RcppExport SEXP _arrow_ipc___RecordBatchFileReader__schema(SEXP reader_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter< - const std::shared_ptr&>::type - reader(reader_sexp); - return Rcpp::wrap(ipc___RecordBatchFileReader__schema(reader)); - END_RCPP +std::shared_ptr ipc___RecordBatchFileReader__schema(const std::shared_ptr& reader); +RcppExport SEXP _arrow_ipc___RecordBatchFileReader__schema(SEXP reader_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type reader(reader_sexp); + return Rcpp::wrap(ipc___RecordBatchFileReader__schema(reader)); +END_RCPP } #else -RcppExport SEXP _arrow_ipc___RecordBatchFileReader__schema(SEXP reader_sexp) { - Rf_error( - "Cannot call ipc___RecordBatchFileReader__schema(). Please use " - "arrow::install_arrow() to install required runtime libraries. "); +RcppExport SEXP _arrow_ipc___RecordBatchFileReader__schema(SEXP reader_sexp){ + Rf_error("Cannot call ipc___RecordBatchFileReader__schema(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // recordbatchreader.cpp #if defined(ARROW_R_WITH_ARROW) -int ipc___RecordBatchFileReader__num_record_batches( - const std::shared_ptr& reader); -RcppExport SEXP _arrow_ipc___RecordBatchFileReader__num_record_batches(SEXP reader_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter< - const std::shared_ptr&>::type - reader(reader_sexp); - return Rcpp::wrap(ipc___RecordBatchFileReader__num_record_batches(reader)); - END_RCPP +int ipc___RecordBatchFileReader__num_record_batches(const std::shared_ptr& reader); +RcppExport SEXP _arrow_ipc___RecordBatchFileReader__num_record_batches(SEXP reader_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type reader(reader_sexp); + return Rcpp::wrap(ipc___RecordBatchFileReader__num_record_batches(reader)); +END_RCPP } #else -RcppExport SEXP _arrow_ipc___RecordBatchFileReader__num_record_batches(SEXP reader_sexp) { - Rf_error( - "Cannot call ipc___RecordBatchFileReader__num_record_batches(). Please use " - "arrow::install_arrow() to install required runtime libraries. "); +RcppExport SEXP _arrow_ipc___RecordBatchFileReader__num_record_batches(SEXP reader_sexp){ + Rf_error("Cannot call ipc___RecordBatchFileReader__num_record_batches(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // recordbatchreader.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr ipc___RecordBatchFileReader__ReadRecordBatch( - const std::shared_ptr& reader, int i); -RcppExport SEXP _arrow_ipc___RecordBatchFileReader__ReadRecordBatch(SEXP reader_sexp, - SEXP i_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter< - const std::shared_ptr&>::type - reader(reader_sexp); - Rcpp::traits::input_parameter::type i(i_sexp); - return Rcpp::wrap(ipc___RecordBatchFileReader__ReadRecordBatch(reader, i)); - END_RCPP +std::shared_ptr ipc___RecordBatchFileReader__ReadRecordBatch(const std::shared_ptr& reader, int i); +RcppExport SEXP _arrow_ipc___RecordBatchFileReader__ReadRecordBatch(SEXP reader_sexp, SEXP i_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type reader(reader_sexp); + Rcpp::traits::input_parameter::type i(i_sexp); + return Rcpp::wrap(ipc___RecordBatchFileReader__ReadRecordBatch(reader, i)); +END_RCPP } #else -RcppExport SEXP _arrow_ipc___RecordBatchFileReader__ReadRecordBatch(SEXP reader_sexp, - SEXP i_sexp) { - Rf_error( - "Cannot call ipc___RecordBatchFileReader__ReadRecordBatch(). Please use " - "arrow::install_arrow() to install required runtime libraries. "); +RcppExport SEXP _arrow_ipc___RecordBatchFileReader__ReadRecordBatch(SEXP reader_sexp, SEXP i_sexp){ + Rf_error("Cannot call ipc___RecordBatchFileReader__ReadRecordBatch(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // recordbatchreader.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr ipc___RecordBatchFileReader__Open( - const std::shared_ptr& file); -RcppExport SEXP _arrow_ipc___RecordBatchFileReader__Open(SEXP file_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type - file(file_sexp); - return Rcpp::wrap(ipc___RecordBatchFileReader__Open(file)); - END_RCPP +std::shared_ptr ipc___RecordBatchFileReader__Open(const std::shared_ptr& file); +RcppExport SEXP _arrow_ipc___RecordBatchFileReader__Open(SEXP file_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type file(file_sexp); + return Rcpp::wrap(ipc___RecordBatchFileReader__Open(file)); +END_RCPP } #else -RcppExport SEXP _arrow_ipc___RecordBatchFileReader__Open(SEXP file_sexp) { - Rf_error( - "Cannot call ipc___RecordBatchFileReader__Open(). Please use " - "arrow::install_arrow() to install required runtime libraries. "); +RcppExport SEXP _arrow_ipc___RecordBatchFileReader__Open(SEXP file_sexp){ + Rf_error("Cannot call ipc___RecordBatchFileReader__Open(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // recordbatchreader.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr Table__from_RecordBatchFileReader( - const std::shared_ptr& reader); -RcppExport SEXP _arrow_Table__from_RecordBatchFileReader(SEXP reader_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter< - const std::shared_ptr&>::type - reader(reader_sexp); - return Rcpp::wrap(Table__from_RecordBatchFileReader(reader)); - END_RCPP +std::shared_ptr Table__from_RecordBatchFileReader(const std::shared_ptr& reader); +RcppExport SEXP _arrow_Table__from_RecordBatchFileReader(SEXP reader_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type reader(reader_sexp); + return Rcpp::wrap(Table__from_RecordBatchFileReader(reader)); +END_RCPP } #else -RcppExport SEXP _arrow_Table__from_RecordBatchFileReader(SEXP reader_sexp) { - Rf_error( - "Cannot call Table__from_RecordBatchFileReader(). Please use " - "arrow::install_arrow() to install required runtime libraries. "); +RcppExport SEXP _arrow_Table__from_RecordBatchFileReader(SEXP reader_sexp){ + Rf_error("Cannot call Table__from_RecordBatchFileReader(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // recordbatchreader.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr Table__from_RecordBatchStreamReader( - const std::shared_ptr& reader); -RcppExport SEXP _arrow_Table__from_RecordBatchStreamReader(SEXP reader_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter< - const std::shared_ptr&>::type - reader(reader_sexp); - return Rcpp::wrap(Table__from_RecordBatchStreamReader(reader)); - END_RCPP +std::shared_ptr Table__from_RecordBatchStreamReader(const std::shared_ptr& reader); +RcppExport SEXP _arrow_Table__from_RecordBatchStreamReader(SEXP reader_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type reader(reader_sexp); + return Rcpp::wrap(Table__from_RecordBatchStreamReader(reader)); +END_RCPP } #else -RcppExport SEXP _arrow_Table__from_RecordBatchStreamReader(SEXP reader_sexp) { - Rf_error( - "Cannot call Table__from_RecordBatchStreamReader(). Please use " - "arrow::install_arrow() to install required runtime libraries. "); +RcppExport SEXP _arrow_Table__from_RecordBatchStreamReader(SEXP reader_sexp){ + Rf_error("Cannot call Table__from_RecordBatchStreamReader(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // recordbatchreader.cpp #if defined(ARROW_R_WITH_ARROW) -std::vector> ipc___RecordBatchFileReader__batches( - const std::shared_ptr& reader); -RcppExport SEXP _arrow_ipc___RecordBatchFileReader__batches(SEXP reader_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter< - const std::shared_ptr&>::type - reader(reader_sexp); - return Rcpp::wrap(ipc___RecordBatchFileReader__batches(reader)); - END_RCPP +std::vector> ipc___RecordBatchFileReader__batches(const std::shared_ptr& reader); +RcppExport SEXP _arrow_ipc___RecordBatchFileReader__batches(SEXP reader_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type reader(reader_sexp); + return Rcpp::wrap(ipc___RecordBatchFileReader__batches(reader)); +END_RCPP } #else -RcppExport SEXP _arrow_ipc___RecordBatchFileReader__batches(SEXP reader_sexp) { - Rf_error( - "Cannot call ipc___RecordBatchFileReader__batches(). Please use " - "arrow::install_arrow() to install required runtime libraries. "); +RcppExport SEXP _arrow_ipc___RecordBatchFileReader__batches(SEXP reader_sexp){ + Rf_error("Cannot call ipc___RecordBatchFileReader__batches(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // recordbatchwriter.cpp #if defined(ARROW_R_WITH_ARROW) -void ipc___RecordBatchWriter__WriteRecordBatch( - const std::shared_ptr& batch_writer, - const std::shared_ptr& batch); -RcppExport SEXP _arrow_ipc___RecordBatchWriter__WriteRecordBatch(SEXP batch_writer_sexp, - SEXP batch_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>:: - type batch_writer(batch_writer_sexp); - Rcpp::traits::input_parameter&>::type batch( - batch_sexp); - ipc___RecordBatchWriter__WriteRecordBatch(batch_writer, batch); - return R_NilValue; - END_RCPP +void ipc___RecordBatchWriter__WriteRecordBatch(const std::shared_ptr& batch_writer, const std::shared_ptr& batch); +RcppExport SEXP _arrow_ipc___RecordBatchWriter__WriteRecordBatch(SEXP batch_writer_sexp, SEXP batch_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type batch_writer(batch_writer_sexp); + Rcpp::traits::input_parameter&>::type batch(batch_sexp); + ipc___RecordBatchWriter__WriteRecordBatch(batch_writer, batch); + return R_NilValue; +END_RCPP } #else -RcppExport SEXP _arrow_ipc___RecordBatchWriter__WriteRecordBatch(SEXP batch_writer_sexp, - SEXP batch_sexp) { - Rf_error( - "Cannot call ipc___RecordBatchWriter__WriteRecordBatch(). Please use " - "arrow::install_arrow() to install required runtime libraries. "); +RcppExport SEXP _arrow_ipc___RecordBatchWriter__WriteRecordBatch(SEXP batch_writer_sexp, SEXP batch_sexp){ + Rf_error("Cannot call ipc___RecordBatchWriter__WriteRecordBatch(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // recordbatchwriter.cpp #if defined(ARROW_R_WITH_ARROW) -void ipc___RecordBatchWriter__WriteTable( - const std::shared_ptr& batch_writer, - const std::shared_ptr& table); -RcppExport SEXP _arrow_ipc___RecordBatchWriter__WriteTable(SEXP batch_writer_sexp, - SEXP table_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>:: - type batch_writer(batch_writer_sexp); - Rcpp::traits::input_parameter&>::type table( - table_sexp); - ipc___RecordBatchWriter__WriteTable(batch_writer, table); - return R_NilValue; - END_RCPP +void ipc___RecordBatchWriter__WriteTable(const std::shared_ptr& batch_writer, const std::shared_ptr& table); +RcppExport SEXP _arrow_ipc___RecordBatchWriter__WriteTable(SEXP batch_writer_sexp, SEXP table_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type batch_writer(batch_writer_sexp); + Rcpp::traits::input_parameter&>::type table(table_sexp); + ipc___RecordBatchWriter__WriteTable(batch_writer, table); + return R_NilValue; +END_RCPP } #else -RcppExport SEXP _arrow_ipc___RecordBatchWriter__WriteTable(SEXP batch_writer_sexp, - SEXP table_sexp) { - Rf_error( - "Cannot call ipc___RecordBatchWriter__WriteTable(). Please use " - "arrow::install_arrow() to install required runtime libraries. "); +RcppExport SEXP _arrow_ipc___RecordBatchWriter__WriteTable(SEXP batch_writer_sexp, SEXP table_sexp){ + Rf_error("Cannot call ipc___RecordBatchWriter__WriteTable(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // recordbatchwriter.cpp #if defined(ARROW_R_WITH_ARROW) -void ipc___RecordBatchWriter__Close( - const std::shared_ptr& batch_writer); -RcppExport SEXP _arrow_ipc___RecordBatchWriter__Close(SEXP batch_writer_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>:: - type batch_writer(batch_writer_sexp); - ipc___RecordBatchWriter__Close(batch_writer); - return R_NilValue; - END_RCPP +void ipc___RecordBatchWriter__Close(const std::shared_ptr& batch_writer); +RcppExport SEXP _arrow_ipc___RecordBatchWriter__Close(SEXP batch_writer_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type batch_writer(batch_writer_sexp); + ipc___RecordBatchWriter__Close(batch_writer); + return R_NilValue; +END_RCPP } #else -RcppExport SEXP _arrow_ipc___RecordBatchWriter__Close(SEXP batch_writer_sexp) { - Rf_error( - "Cannot call ipc___RecordBatchWriter__Close(). Please use arrow::install_arrow() " - "to install required runtime libraries. "); +RcppExport SEXP _arrow_ipc___RecordBatchWriter__Close(SEXP batch_writer_sexp){ + Rf_error("Cannot call ipc___RecordBatchWriter__Close(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // recordbatchwriter.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr ipc___RecordBatchFileWriter__Open( - const std::shared_ptr& stream, - const std::shared_ptr& schema, bool use_legacy_format); -RcppExport SEXP _arrow_ipc___RecordBatchFileWriter__Open(SEXP stream_sexp, - SEXP schema_sexp, - SEXP use_legacy_format_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type - stream(stream_sexp); - Rcpp::traits::input_parameter&>::type schema( - schema_sexp); - Rcpp::traits::input_parameter::type use_legacy_format(use_legacy_format_sexp); - return Rcpp::wrap(ipc___RecordBatchFileWriter__Open(stream, schema, use_legacy_format)); - END_RCPP +std::shared_ptr ipc___RecordBatchFileWriter__Open(const std::shared_ptr& stream, const std::shared_ptr& schema, bool use_legacy_format); +RcppExport SEXP _arrow_ipc___RecordBatchFileWriter__Open(SEXP stream_sexp, SEXP schema_sexp, SEXP use_legacy_format_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type stream(stream_sexp); + Rcpp::traits::input_parameter&>::type schema(schema_sexp); + Rcpp::traits::input_parameter::type use_legacy_format(use_legacy_format_sexp); + return Rcpp::wrap(ipc___RecordBatchFileWriter__Open(stream, schema, use_legacy_format)); +END_RCPP } #else -RcppExport SEXP _arrow_ipc___RecordBatchFileWriter__Open(SEXP stream_sexp, - SEXP schema_sexp, - SEXP use_legacy_format_sexp) { - Rf_error( - "Cannot call ipc___RecordBatchFileWriter__Open(). Please use " - "arrow::install_arrow() to install required runtime libraries. "); +RcppExport SEXP _arrow_ipc___RecordBatchFileWriter__Open(SEXP stream_sexp, SEXP schema_sexp, SEXP use_legacy_format_sexp){ + Rf_error("Cannot call ipc___RecordBatchFileWriter__Open(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // recordbatchwriter.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr ipc___RecordBatchStreamWriter__Open( - const std::shared_ptr& stream, - const std::shared_ptr& schema, bool use_legacy_format); -RcppExport SEXP _arrow_ipc___RecordBatchStreamWriter__Open(SEXP stream_sexp, - SEXP schema_sexp, - SEXP use_legacy_format_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type - stream(stream_sexp); - Rcpp::traits::input_parameter&>::type schema( - schema_sexp); - Rcpp::traits::input_parameter::type use_legacy_format(use_legacy_format_sexp); - return Rcpp::wrap( - ipc___RecordBatchStreamWriter__Open(stream, schema, use_legacy_format)); - END_RCPP +std::shared_ptr ipc___RecordBatchStreamWriter__Open(const std::shared_ptr& stream, const std::shared_ptr& schema, bool use_legacy_format); +RcppExport SEXP _arrow_ipc___RecordBatchStreamWriter__Open(SEXP stream_sexp, SEXP schema_sexp, SEXP use_legacy_format_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type stream(stream_sexp); + Rcpp::traits::input_parameter&>::type schema(schema_sexp); + Rcpp::traits::input_parameter::type use_legacy_format(use_legacy_format_sexp); + return Rcpp::wrap(ipc___RecordBatchStreamWriter__Open(stream, schema, use_legacy_format)); +END_RCPP } #else -RcppExport SEXP _arrow_ipc___RecordBatchStreamWriter__Open(SEXP stream_sexp, - SEXP schema_sexp, - SEXP use_legacy_format_sexp) { - Rf_error( - "Cannot call ipc___RecordBatchStreamWriter__Open(). Please use " - "arrow::install_arrow() to install required runtime libraries. "); +RcppExport SEXP _arrow_ipc___RecordBatchStreamWriter__Open(SEXP stream_sexp, SEXP schema_sexp, SEXP use_legacy_format_sexp){ + Rf_error("Cannot call ipc___RecordBatchStreamWriter__Open(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // schema.cpp #if defined(ARROW_R_WITH_ARROW) std::shared_ptr schema_(Rcpp::List fields); -RcppExport SEXP _arrow_schema_(SEXP fields_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter::type fields(fields_sexp); - return Rcpp::wrap(schema_(fields)); - END_RCPP +RcppExport SEXP _arrow_schema_(SEXP fields_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter::type fields(fields_sexp); + return Rcpp::wrap(schema_(fields)); +END_RCPP } #else -RcppExport SEXP _arrow_schema_(SEXP fields_sexp) { - Rf_error( - "Cannot call schema_(). Please use arrow::install_arrow() to install required " - "runtime libraries. "); +RcppExport SEXP _arrow_schema_(SEXP fields_sexp){ + Rf_error("Cannot call schema_(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // schema.cpp #if defined(ARROW_R_WITH_ARROW) std::string Schema__ToString(const std::shared_ptr& s); -RcppExport SEXP _arrow_Schema__ToString(SEXP s_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type s(s_sexp); - return Rcpp::wrap(Schema__ToString(s)); - END_RCPP +RcppExport SEXP _arrow_Schema__ToString(SEXP s_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type s(s_sexp); + return Rcpp::wrap(Schema__ToString(s)); +END_RCPP } #else -RcppExport SEXP _arrow_Schema__ToString(SEXP s_sexp) { - Rf_error( - "Cannot call Schema__ToString(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_Schema__ToString(SEXP s_sexp){ + Rf_error("Cannot call Schema__ToString(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // schema.cpp #if defined(ARROW_R_WITH_ARROW) int Schema__num_fields(const std::shared_ptr& s); -RcppExport SEXP _arrow_Schema__num_fields(SEXP s_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type s(s_sexp); - return Rcpp::wrap(Schema__num_fields(s)); - END_RCPP +RcppExport SEXP _arrow_Schema__num_fields(SEXP s_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type s(s_sexp); + return Rcpp::wrap(Schema__num_fields(s)); +END_RCPP } #else -RcppExport SEXP _arrow_Schema__num_fields(SEXP s_sexp) { - Rf_error( - "Cannot call Schema__num_fields(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_Schema__num_fields(SEXP s_sexp){ + Rf_error("Cannot call Schema__num_fields(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // schema.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr Schema__field(const std::shared_ptr& s, - int i); -RcppExport SEXP _arrow_Schema__field(SEXP s_sexp, SEXP i_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type s(s_sexp); - Rcpp::traits::input_parameter::type i(i_sexp); - return Rcpp::wrap(Schema__field(s, i)); - END_RCPP +std::shared_ptr Schema__field(const std::shared_ptr& s, int i); +RcppExport SEXP _arrow_Schema__field(SEXP s_sexp, SEXP i_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type s(s_sexp); + Rcpp::traits::input_parameter::type i(i_sexp); + return Rcpp::wrap(Schema__field(s, i)); +END_RCPP } #else -RcppExport SEXP _arrow_Schema__field(SEXP s_sexp, SEXP i_sexp) { - Rf_error( - "Cannot call Schema__field(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_Schema__field(SEXP s_sexp, SEXP i_sexp){ + Rf_error("Cannot call Schema__field(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // schema.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr Schema__GetFieldByName( - const std::shared_ptr& s, std::string x); -RcppExport SEXP _arrow_Schema__GetFieldByName(SEXP s_sexp, SEXP x_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type s(s_sexp); - Rcpp::traits::input_parameter::type x(x_sexp); - return Rcpp::wrap(Schema__GetFieldByName(s, x)); - END_RCPP +std::shared_ptr Schema__GetFieldByName(const std::shared_ptr& s, std::string x); +RcppExport SEXP _arrow_Schema__GetFieldByName(SEXP s_sexp, SEXP x_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type s(s_sexp); + Rcpp::traits::input_parameter::type x(x_sexp); + return Rcpp::wrap(Schema__GetFieldByName(s, x)); +END_RCPP } #else -RcppExport SEXP _arrow_Schema__GetFieldByName(SEXP s_sexp, SEXP x_sexp) { - Rf_error( - "Cannot call Schema__GetFieldByName(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_Schema__GetFieldByName(SEXP s_sexp, SEXP x_sexp){ + Rf_error("Cannot call Schema__GetFieldByName(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // schema.cpp #if defined(ARROW_R_WITH_ARROW) -std::vector> Schema__fields( - const std::shared_ptr& schema); -RcppExport SEXP _arrow_Schema__fields(SEXP schema_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type schema( - schema_sexp); - return Rcpp::wrap(Schema__fields(schema)); - END_RCPP +std::vector> Schema__fields(const std::shared_ptr& schema); +RcppExport SEXP _arrow_Schema__fields(SEXP schema_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type schema(schema_sexp); + return Rcpp::wrap(Schema__fields(schema)); +END_RCPP } #else -RcppExport SEXP _arrow_Schema__fields(SEXP schema_sexp) { - Rf_error( - "Cannot call Schema__fields(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_Schema__fields(SEXP schema_sexp){ + Rf_error("Cannot call Schema__fields(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // schema.cpp #if defined(ARROW_R_WITH_ARROW) -std::vector Schema__field_names( - const std::shared_ptr& schema); -RcppExport SEXP _arrow_Schema__field_names(SEXP schema_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type schema( - schema_sexp); - return Rcpp::wrap(Schema__field_names(schema)); - END_RCPP +std::vector Schema__field_names(const std::shared_ptr& schema); +RcppExport SEXP _arrow_Schema__field_names(SEXP schema_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type schema(schema_sexp); + return Rcpp::wrap(Schema__field_names(schema)); +END_RCPP } #else -RcppExport SEXP _arrow_Schema__field_names(SEXP schema_sexp) { - Rf_error( - "Cannot call Schema__field_names(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_Schema__field_names(SEXP schema_sexp){ + Rf_error("Cannot call Schema__field_names(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // schema.cpp #if defined(ARROW_R_WITH_ARROW) bool Schema__HasMetadata(const std::shared_ptr& schema); -RcppExport SEXP _arrow_Schema__HasMetadata(SEXP schema_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type schema( - schema_sexp); - return Rcpp::wrap(Schema__HasMetadata(schema)); - END_RCPP +RcppExport SEXP _arrow_Schema__HasMetadata(SEXP schema_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type schema(schema_sexp); + return Rcpp::wrap(Schema__HasMetadata(schema)); +END_RCPP } #else -RcppExport SEXP _arrow_Schema__HasMetadata(SEXP schema_sexp) { - Rf_error( - "Cannot call Schema__HasMetadata(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_Schema__HasMetadata(SEXP schema_sexp){ + Rf_error("Cannot call Schema__HasMetadata(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // schema.cpp #if defined(ARROW_R_WITH_ARROW) std::string Schema__metadata(const std::shared_ptr& schema); -RcppExport SEXP _arrow_Schema__metadata(SEXP schema_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type schema( - schema_sexp); - return Rcpp::wrap(Schema__metadata(schema)); - END_RCPP +RcppExport SEXP _arrow_Schema__metadata(SEXP schema_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type schema(schema_sexp); + return Rcpp::wrap(Schema__metadata(schema)); +END_RCPP } #else -RcppExport SEXP _arrow_Schema__metadata(SEXP schema_sexp) { - Rf_error( - "Cannot call Schema__metadata(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_Schema__metadata(SEXP schema_sexp){ + Rf_error("Cannot call Schema__metadata(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // schema.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr Schema__WithMetadata( - const std::shared_ptr& schema, Rcpp::CharacterVector metadata); -RcppExport SEXP _arrow_Schema__WithMetadata(SEXP schema_sexp, SEXP metadata_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type schema( - schema_sexp); - Rcpp::traits::input_parameter::type metadata(metadata_sexp); - return Rcpp::wrap(Schema__WithMetadata(schema, metadata)); - END_RCPP +std::shared_ptr Schema__WithMetadata(const std::shared_ptr& schema, Rcpp::CharacterVector metadata); +RcppExport SEXP _arrow_Schema__WithMetadata(SEXP schema_sexp, SEXP metadata_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type schema(schema_sexp); + Rcpp::traits::input_parameter::type metadata(metadata_sexp); + return Rcpp::wrap(Schema__WithMetadata(schema, metadata)); +END_RCPP } #else -RcppExport SEXP _arrow_Schema__WithMetadata(SEXP schema_sexp, SEXP metadata_sexp) { - Rf_error( - "Cannot call Schema__WithMetadata(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_Schema__WithMetadata(SEXP schema_sexp, SEXP metadata_sexp){ + Rf_error("Cannot call Schema__WithMetadata(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // schema.cpp #if defined(ARROW_R_WITH_ARROW) Rcpp::RawVector Schema__serialize(const std::shared_ptr& schema); -RcppExport SEXP _arrow_Schema__serialize(SEXP schema_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type schema( - schema_sexp); - return Rcpp::wrap(Schema__serialize(schema)); - END_RCPP +RcppExport SEXP _arrow_Schema__serialize(SEXP schema_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type schema(schema_sexp); + return Rcpp::wrap(Schema__serialize(schema)); +END_RCPP } #else -RcppExport SEXP _arrow_Schema__serialize(SEXP schema_sexp) { - Rf_error( - "Cannot call Schema__serialize(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_Schema__serialize(SEXP schema_sexp){ + Rf_error("Cannot call Schema__serialize(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // schema.cpp #if defined(ARROW_R_WITH_ARROW) -bool Schema__Equals(const std::shared_ptr& schema, - const std::shared_ptr& other, bool check_metadata); -RcppExport SEXP _arrow_Schema__Equals(SEXP schema_sexp, SEXP other_sexp, - SEXP check_metadata_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type schema( - schema_sexp); - Rcpp::traits::input_parameter&>::type other( - other_sexp); - Rcpp::traits::input_parameter::type check_metadata(check_metadata_sexp); - return Rcpp::wrap(Schema__Equals(schema, other, check_metadata)); - END_RCPP +bool Schema__Equals(const std::shared_ptr& schema, const std::shared_ptr& other, bool check_metadata); +RcppExport SEXP _arrow_Schema__Equals(SEXP schema_sexp, SEXP other_sexp, SEXP check_metadata_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type schema(schema_sexp); + Rcpp::traits::input_parameter&>::type other(other_sexp); + Rcpp::traits::input_parameter::type check_metadata(check_metadata_sexp); + return Rcpp::wrap(Schema__Equals(schema, other, check_metadata)); +END_RCPP } #else -RcppExport SEXP _arrow_Schema__Equals(SEXP schema_sexp, SEXP other_sexp, - SEXP check_metadata_sexp) { - Rf_error( - "Cannot call Schema__Equals(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_Schema__Equals(SEXP schema_sexp, SEXP other_sexp, SEXP check_metadata_sexp){ + Rf_error("Cannot call Schema__Equals(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // table.cpp #if defined(ARROW_R_WITH_ARROW) std::shared_ptr Table__from_dataframe(DataFrame tbl); -RcppExport SEXP _arrow_Table__from_dataframe(SEXP tbl_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter::type tbl(tbl_sexp); - return Rcpp::wrap(Table__from_dataframe(tbl)); - END_RCPP +RcppExport SEXP _arrow_Table__from_dataframe(SEXP tbl_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter::type tbl(tbl_sexp); + return Rcpp::wrap(Table__from_dataframe(tbl)); +END_RCPP } #else -RcppExport SEXP _arrow_Table__from_dataframe(SEXP tbl_sexp) { - Rf_error( - "Cannot call Table__from_dataframe(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_Table__from_dataframe(SEXP tbl_sexp){ + Rf_error("Cannot call Table__from_dataframe(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // table.cpp #if defined(ARROW_R_WITH_ARROW) int Table__num_columns(const std::shared_ptr& x); -RcppExport SEXP _arrow_Table__num_columns(SEXP x_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type x(x_sexp); - return Rcpp::wrap(Table__num_columns(x)); - END_RCPP +RcppExport SEXP _arrow_Table__num_columns(SEXP x_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type x(x_sexp); + return Rcpp::wrap(Table__num_columns(x)); +END_RCPP } #else -RcppExport SEXP _arrow_Table__num_columns(SEXP x_sexp) { - Rf_error( - "Cannot call Table__num_columns(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_Table__num_columns(SEXP x_sexp){ + Rf_error("Cannot call Table__num_columns(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // table.cpp #if defined(ARROW_R_WITH_ARROW) int Table__num_rows(const std::shared_ptr& x); -RcppExport SEXP _arrow_Table__num_rows(SEXP x_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type x(x_sexp); - return Rcpp::wrap(Table__num_rows(x)); - END_RCPP +RcppExport SEXP _arrow_Table__num_rows(SEXP x_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type x(x_sexp); + return Rcpp::wrap(Table__num_rows(x)); +END_RCPP } #else -RcppExport SEXP _arrow_Table__num_rows(SEXP x_sexp) { - Rf_error( - "Cannot call Table__num_rows(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_Table__num_rows(SEXP x_sexp){ + Rf_error("Cannot call Table__num_rows(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // table.cpp #if defined(ARROW_R_WITH_ARROW) std::shared_ptr Table__schema(const std::shared_ptr& x); -RcppExport SEXP _arrow_Table__schema(SEXP x_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type x(x_sexp); - return Rcpp::wrap(Table__schema(x)); - END_RCPP +RcppExport SEXP _arrow_Table__schema(SEXP x_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type x(x_sexp); + return Rcpp::wrap(Table__schema(x)); +END_RCPP } #else -RcppExport SEXP _arrow_Table__schema(SEXP x_sexp) { - Rf_error( - "Cannot call Table__schema(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_Table__schema(SEXP x_sexp){ + Rf_error("Cannot call Table__schema(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // table.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr Table__column( - const std::shared_ptr& table, int i); -RcppExport SEXP _arrow_Table__column(SEXP table_sexp, SEXP i_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type table( - table_sexp); - Rcpp::traits::input_parameter::type i(i_sexp); - return Rcpp::wrap(Table__column(table, i)); - END_RCPP +std::shared_ptr Table__column(const std::shared_ptr& table, int i); +RcppExport SEXP _arrow_Table__column(SEXP table_sexp, SEXP i_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type table(table_sexp); + Rcpp::traits::input_parameter::type i(i_sexp); + return Rcpp::wrap(Table__column(table, i)); +END_RCPP } #else -RcppExport SEXP _arrow_Table__column(SEXP table_sexp, SEXP i_sexp) { - Rf_error( - "Cannot call Table__column(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_Table__column(SEXP table_sexp, SEXP i_sexp){ + Rf_error("Cannot call Table__column(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // table.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr Table__field(const std::shared_ptr& table, - int i); -RcppExport SEXP _arrow_Table__field(SEXP table_sexp, SEXP i_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type table( - table_sexp); - Rcpp::traits::input_parameter::type i(i_sexp); - return Rcpp::wrap(Table__field(table, i)); - END_RCPP +std::shared_ptr Table__field(const std::shared_ptr& table, int i); +RcppExport SEXP _arrow_Table__field(SEXP table_sexp, SEXP i_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type table(table_sexp); + Rcpp::traits::input_parameter::type i(i_sexp); + return Rcpp::wrap(Table__field(table, i)); +END_RCPP } #else -RcppExport SEXP _arrow_Table__field(SEXP table_sexp, SEXP i_sexp) { - Rf_error( - "Cannot call Table__field(). Please use arrow::install_arrow() to install required " - "runtime libraries. "); +RcppExport SEXP _arrow_Table__field(SEXP table_sexp, SEXP i_sexp){ + Rf_error("Cannot call Table__field(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // table.cpp #if defined(ARROW_R_WITH_ARROW) -std::vector> Table__columns( - const std::shared_ptr& table); -RcppExport SEXP _arrow_Table__columns(SEXP table_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type table( - table_sexp); - return Rcpp::wrap(Table__columns(table)); - END_RCPP +std::vector> Table__columns(const std::shared_ptr& table); +RcppExport SEXP _arrow_Table__columns(SEXP table_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type table(table_sexp); + return Rcpp::wrap(Table__columns(table)); +END_RCPP } #else -RcppExport SEXP _arrow_Table__columns(SEXP table_sexp) { - Rf_error( - "Cannot call Table__columns(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_Table__columns(SEXP table_sexp){ + Rf_error("Cannot call Table__columns(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // table.cpp #if defined(ARROW_R_WITH_ARROW) std::vector Table__ColumnNames(const std::shared_ptr& table); -RcppExport SEXP _arrow_Table__ColumnNames(SEXP table_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type table( - table_sexp); - return Rcpp::wrap(Table__ColumnNames(table)); - END_RCPP +RcppExport SEXP _arrow_Table__ColumnNames(SEXP table_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type table(table_sexp); + return Rcpp::wrap(Table__ColumnNames(table)); +END_RCPP } #else -RcppExport SEXP _arrow_Table__ColumnNames(SEXP table_sexp) { - Rf_error( - "Cannot call Table__ColumnNames(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_Table__ColumnNames(SEXP table_sexp){ + Rf_error("Cannot call Table__ColumnNames(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // table.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr Table__Slice1(const std::shared_ptr& table, - int offset); -RcppExport SEXP _arrow_Table__Slice1(SEXP table_sexp, SEXP offset_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type table( - table_sexp); - Rcpp::traits::input_parameter::type offset(offset_sexp); - return Rcpp::wrap(Table__Slice1(table, offset)); - END_RCPP +std::shared_ptr Table__Slice1(const std::shared_ptr& table, int offset); +RcppExport SEXP _arrow_Table__Slice1(SEXP table_sexp, SEXP offset_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type table(table_sexp); + Rcpp::traits::input_parameter::type offset(offset_sexp); + return Rcpp::wrap(Table__Slice1(table, offset)); +END_RCPP } #else -RcppExport SEXP _arrow_Table__Slice1(SEXP table_sexp, SEXP offset_sexp) { - Rf_error( - "Cannot call Table__Slice1(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_Table__Slice1(SEXP table_sexp, SEXP offset_sexp){ + Rf_error("Cannot call Table__Slice1(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // table.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr Table__Slice2(const std::shared_ptr& table, - int offset, int length); -RcppExport SEXP _arrow_Table__Slice2(SEXP table_sexp, SEXP offset_sexp, - SEXP length_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type table( - table_sexp); - Rcpp::traits::input_parameter::type offset(offset_sexp); - Rcpp::traits::input_parameter::type length(length_sexp); - return Rcpp::wrap(Table__Slice2(table, offset, length)); - END_RCPP +std::shared_ptr Table__Slice2(const std::shared_ptr& table, int offset, int length); +RcppExport SEXP _arrow_Table__Slice2(SEXP table_sexp, SEXP offset_sexp, SEXP length_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type table(table_sexp); + Rcpp::traits::input_parameter::type offset(offset_sexp); + Rcpp::traits::input_parameter::type length(length_sexp); + return Rcpp::wrap(Table__Slice2(table, offset, length)); +END_RCPP } #else -RcppExport SEXP _arrow_Table__Slice2(SEXP table_sexp, SEXP offset_sexp, - SEXP length_sexp) { - Rf_error( - "Cannot call Table__Slice2(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_Table__Slice2(SEXP table_sexp, SEXP offset_sexp, SEXP length_sexp){ + Rf_error("Cannot call Table__Slice2(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // table.cpp #if defined(ARROW_R_WITH_ARROW) -bool Table__Equals(const std::shared_ptr& lhs, - const std::shared_ptr& rhs, bool check_metadata); -RcppExport SEXP _arrow_Table__Equals(SEXP lhs_sexp, SEXP rhs_sexp, - SEXP check_metadata_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type lhs(lhs_sexp); - Rcpp::traits::input_parameter&>::type rhs(rhs_sexp); - Rcpp::traits::input_parameter::type check_metadata(check_metadata_sexp); - return Rcpp::wrap(Table__Equals(lhs, rhs, check_metadata)); - END_RCPP +bool Table__Equals(const std::shared_ptr& lhs, const std::shared_ptr& rhs, bool check_metadata); +RcppExport SEXP _arrow_Table__Equals(SEXP lhs_sexp, SEXP rhs_sexp, SEXP check_metadata_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type lhs(lhs_sexp); + Rcpp::traits::input_parameter&>::type rhs(rhs_sexp); + Rcpp::traits::input_parameter::type check_metadata(check_metadata_sexp); + return Rcpp::wrap(Table__Equals(lhs, rhs, check_metadata)); +END_RCPP } #else -RcppExport SEXP _arrow_Table__Equals(SEXP lhs_sexp, SEXP rhs_sexp, - SEXP check_metadata_sexp) { - Rf_error( - "Cannot call Table__Equals(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_Table__Equals(SEXP lhs_sexp, SEXP rhs_sexp, SEXP check_metadata_sexp){ + Rf_error("Cannot call Table__Equals(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // table.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr Table__GetColumnByName( - const std::shared_ptr& table, const std::string& name); -RcppExport SEXP _arrow_Table__GetColumnByName(SEXP table_sexp, SEXP name_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type table( - table_sexp); - Rcpp::traits::input_parameter::type name(name_sexp); - return Rcpp::wrap(Table__GetColumnByName(table, name)); - END_RCPP +std::shared_ptr Table__GetColumnByName(const std::shared_ptr& table, const std::string& name); +RcppExport SEXP _arrow_Table__GetColumnByName(SEXP table_sexp, SEXP name_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type table(table_sexp); + Rcpp::traits::input_parameter::type name(name_sexp); + return Rcpp::wrap(Table__GetColumnByName(table, name)); +END_RCPP } #else -RcppExport SEXP _arrow_Table__GetColumnByName(SEXP table_sexp, SEXP name_sexp) { - Rf_error( - "Cannot call Table__GetColumnByName(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_Table__GetColumnByName(SEXP table_sexp, SEXP name_sexp){ + Rf_error("Cannot call Table__GetColumnByName(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // table.cpp #if defined(ARROW_R_WITH_ARROW) -std::shared_ptr Table__select(const std::shared_ptr& table, - const Rcpp::IntegerVector& indices); -RcppExport SEXP _arrow_Table__select(SEXP table_sexp, SEXP indices_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter&>::type table( - table_sexp); - Rcpp::traits::input_parameter::type indices(indices_sexp); - return Rcpp::wrap(Table__select(table, indices)); - END_RCPP +std::shared_ptr Table__select(const std::shared_ptr& table, const Rcpp::IntegerVector& indices); +RcppExport SEXP _arrow_Table__select(SEXP table_sexp, SEXP indices_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter&>::type table(table_sexp); + Rcpp::traits::input_parameter::type indices(indices_sexp); + return Rcpp::wrap(Table__select(table, indices)); +END_RCPP } #else -RcppExport SEXP _arrow_Table__select(SEXP table_sexp, SEXP indices_sexp) { - Rf_error( - "Cannot call Table__select(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_Table__select(SEXP table_sexp, SEXP indices_sexp){ + Rf_error("Cannot call Table__select(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // table.cpp #if defined(ARROW_R_WITH_ARROW) std::shared_ptr Table__from_dots(SEXP lst, SEXP schema_sxp); -RcppExport SEXP _arrow_Table__from_dots(SEXP lst_sexp, SEXP schema_sxp_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter::type lst(lst_sexp); - Rcpp::traits::input_parameter::type schema_sxp(schema_sxp_sexp); - return Rcpp::wrap(Table__from_dots(lst, schema_sxp)); - END_RCPP +RcppExport SEXP _arrow_Table__from_dots(SEXP lst_sexp, SEXP schema_sxp_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter::type lst(lst_sexp); + Rcpp::traits::input_parameter::type schema_sxp(schema_sxp_sexp); + return Rcpp::wrap(Table__from_dots(lst, schema_sxp)); +END_RCPP } #else -RcppExport SEXP _arrow_Table__from_dots(SEXP lst_sexp, SEXP schema_sxp_sexp) { - Rf_error( - "Cannot call Table__from_dots(). Please use arrow::install_arrow() to install " - "required runtime libraries. "); +RcppExport SEXP _arrow_Table__from_dots(SEXP lst_sexp, SEXP schema_sxp_sexp){ + Rf_error("Cannot call Table__from_dots(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // threadpool.cpp #if defined(ARROW_R_WITH_ARROW) int GetCpuThreadPoolCapacity(); -RcppExport SEXP _arrow_GetCpuThreadPoolCapacity() { - BEGIN_RCPP - return Rcpp::wrap(GetCpuThreadPoolCapacity()); - END_RCPP +RcppExport SEXP _arrow_GetCpuThreadPoolCapacity(){ +BEGIN_RCPP + return Rcpp::wrap(GetCpuThreadPoolCapacity()); +END_RCPP } #else -RcppExport SEXP _arrow_GetCpuThreadPoolCapacity() { - Rf_error( - "Cannot call GetCpuThreadPoolCapacity(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_GetCpuThreadPoolCapacity(){ + Rf_error("Cannot call GetCpuThreadPoolCapacity(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif // threadpool.cpp #if defined(ARROW_R_WITH_ARROW) void SetCpuThreadPoolCapacity(int threads); -RcppExport SEXP _arrow_SetCpuThreadPoolCapacity(SEXP threads_sexp) { - BEGIN_RCPP - Rcpp::traits::input_parameter::type threads(threads_sexp); - SetCpuThreadPoolCapacity(threads); - return R_NilValue; - END_RCPP +RcppExport SEXP _arrow_SetCpuThreadPoolCapacity(SEXP threads_sexp){ +BEGIN_RCPP + Rcpp::traits::input_parameter::type threads(threads_sexp); + SetCpuThreadPoolCapacity(threads); + return R_NilValue; +END_RCPP } #else -RcppExport SEXP _arrow_SetCpuThreadPoolCapacity(SEXP threads_sexp) { - Rf_error( - "Cannot call SetCpuThreadPoolCapacity(). Please use arrow::install_arrow() to " - "install required runtime libraries. "); +RcppExport SEXP _arrow_SetCpuThreadPoolCapacity(SEXP threads_sexp){ + Rf_error("Cannot call SetCpuThreadPoolCapacity(). Please use arrow::install_arrow() to install required runtime libraries. "); } #endif + extern "C" SEXP _arrow_available() { - return Rf_ScalarLogical( +return Rf_ScalarLogical( #if defined(ARROW_R_WITH_ARROW) - TRUE + TRUE #else - FALSE + FALSE #endif - ); +); } static const R_CallMethodDef CallEntries[] = { - {"_arrow_available", (DL_FUNC)&_arrow_available, 0}, - {"_arrow_Array__Slice1", (DL_FUNC)&_arrow_Array__Slice1, 2}, - {"_arrow_Array__Slice2", (DL_FUNC)&_arrow_Array__Slice2, 3}, - {"_arrow_Array__IsNull", (DL_FUNC)&_arrow_Array__IsNull, 2}, - {"_arrow_Array__IsValid", (DL_FUNC)&_arrow_Array__IsValid, 2}, - {"_arrow_Array__length", (DL_FUNC)&_arrow_Array__length, 1}, - {"_arrow_Array__offset", (DL_FUNC)&_arrow_Array__offset, 1}, - {"_arrow_Array__null_count", (DL_FUNC)&_arrow_Array__null_count, 1}, - {"_arrow_Array__type", (DL_FUNC)&_arrow_Array__type, 1}, - {"_arrow_Array__ToString", (DL_FUNC)&_arrow_Array__ToString, 1}, - {"_arrow_Array__type_id", (DL_FUNC)&_arrow_Array__type_id, 1}, - {"_arrow_Array__Equals", (DL_FUNC)&_arrow_Array__Equals, 2}, - {"_arrow_Array__ApproxEquals", (DL_FUNC)&_arrow_Array__ApproxEquals, 2}, - {"_arrow_Array__data", (DL_FUNC)&_arrow_Array__data, 1}, - {"_arrow_Array__RangeEquals", (DL_FUNC)&_arrow_Array__RangeEquals, 5}, - {"_arrow_Array__View", (DL_FUNC)&_arrow_Array__View, 2}, - {"_arrow_Array__Mask", (DL_FUNC)&_arrow_Array__Mask, 1}, - {"_arrow_Array__Validate", (DL_FUNC)&_arrow_Array__Validate, 1}, - {"_arrow_DictionaryArray__indices", (DL_FUNC)&_arrow_DictionaryArray__indices, 1}, - {"_arrow_DictionaryArray__dictionary", (DL_FUNC)&_arrow_DictionaryArray__dictionary, - 1}, - {"_arrow_StructArray__field", (DL_FUNC)&_arrow_StructArray__field, 2}, - {"_arrow_StructArray__GetFieldByName", (DL_FUNC)&_arrow_StructArray__GetFieldByName, - 2}, - {"_arrow_StructArray__Flatten", (DL_FUNC)&_arrow_StructArray__Flatten, 1}, - {"_arrow_ListArray__value_type", (DL_FUNC)&_arrow_ListArray__value_type, 1}, - {"_arrow_ListArray__values", (DL_FUNC)&_arrow_ListArray__values, 1}, - {"_arrow_ListArray__value_length", (DL_FUNC)&_arrow_ListArray__value_length, 2}, - {"_arrow_ListArray__value_offset", (DL_FUNC)&_arrow_ListArray__value_offset, 2}, - {"_arrow_ListArray__raw_value_offsets", (DL_FUNC)&_arrow_ListArray__raw_value_offsets, - 1}, - {"_arrow_Array__infer_type", (DL_FUNC)&_arrow_Array__infer_type, 1}, - {"_arrow_Array__from_vector", (DL_FUNC)&_arrow_Array__from_vector, 2}, - {"_arrow_ChunkedArray__from_list", (DL_FUNC)&_arrow_ChunkedArray__from_list, 2}, - {"_arrow_DictionaryArray__FromArrays", (DL_FUNC)&_arrow_DictionaryArray__FromArrays, - 3}, - {"_arrow_Array__as_vector", (DL_FUNC)&_arrow_Array__as_vector, 1}, - {"_arrow_ChunkedArray__as_vector", (DL_FUNC)&_arrow_ChunkedArray__as_vector, 1}, - {"_arrow_RecordBatch__to_dataframe", (DL_FUNC)&_arrow_RecordBatch__to_dataframe, 2}, - {"_arrow_Table__to_dataframe", (DL_FUNC)&_arrow_Table__to_dataframe, 2}, - {"_arrow_ArrayData__get_type", (DL_FUNC)&_arrow_ArrayData__get_type, 1}, - {"_arrow_ArrayData__get_length", (DL_FUNC)&_arrow_ArrayData__get_length, 1}, - {"_arrow_ArrayData__get_null_count", (DL_FUNC)&_arrow_ArrayData__get_null_count, 1}, - {"_arrow_ArrayData__get_offset", (DL_FUNC)&_arrow_ArrayData__get_offset, 1}, - {"_arrow_ArrayData__buffers", (DL_FUNC)&_arrow_ArrayData__buffers, 1}, - {"_arrow_Buffer__is_mutable", (DL_FUNC)&_arrow_Buffer__is_mutable, 1}, - {"_arrow_Buffer__ZeroPadding", (DL_FUNC)&_arrow_Buffer__ZeroPadding, 1}, - {"_arrow_Buffer__capacity", (DL_FUNC)&_arrow_Buffer__capacity, 1}, - {"_arrow_Buffer__size", (DL_FUNC)&_arrow_Buffer__size, 1}, - {"_arrow_r___RBuffer__initialize", (DL_FUNC)&_arrow_r___RBuffer__initialize, 1}, - {"_arrow_Buffer__data", (DL_FUNC)&_arrow_Buffer__data, 1}, - {"_arrow_Buffer__Equals", (DL_FUNC)&_arrow_Buffer__Equals, 2}, - {"_arrow_ChunkedArray__length", (DL_FUNC)&_arrow_ChunkedArray__length, 1}, - {"_arrow_ChunkedArray__null_count", (DL_FUNC)&_arrow_ChunkedArray__null_count, 1}, - {"_arrow_ChunkedArray__num_chunks", (DL_FUNC)&_arrow_ChunkedArray__num_chunks, 1}, - {"_arrow_ChunkedArray__chunk", (DL_FUNC)&_arrow_ChunkedArray__chunk, 2}, - {"_arrow_ChunkedArray__chunks", (DL_FUNC)&_arrow_ChunkedArray__chunks, 1}, - {"_arrow_ChunkedArray__type", (DL_FUNC)&_arrow_ChunkedArray__type, 1}, - {"_arrow_ChunkedArray__Slice1", (DL_FUNC)&_arrow_ChunkedArray__Slice1, 2}, - {"_arrow_ChunkedArray__Slice2", (DL_FUNC)&_arrow_ChunkedArray__Slice2, 3}, - {"_arrow_ChunkedArray__View", (DL_FUNC)&_arrow_ChunkedArray__View, 2}, - {"_arrow_ChunkedArray__Validate", (DL_FUNC)&_arrow_ChunkedArray__Validate, 1}, - {"_arrow_ChunkedArray__Equals", (DL_FUNC)&_arrow_ChunkedArray__Equals, 2}, - {"_arrow_util___Codec__Create", (DL_FUNC)&_arrow_util___Codec__Create, 2}, - {"_arrow_util___Codec__name", (DL_FUNC)&_arrow_util___Codec__name, 1}, - {"_arrow_util___Codec__IsAvailable", (DL_FUNC)&_arrow_util___Codec__IsAvailable, 1}, - {"_arrow_io___CompressedOutputStream__Make", - (DL_FUNC)&_arrow_io___CompressedOutputStream__Make, 2}, - {"_arrow_io___CompressedInputStream__Make", - (DL_FUNC)&_arrow_io___CompressedInputStream__Make, 2}, - {"_arrow_compute___CastOptions__initialize", - (DL_FUNC)&_arrow_compute___CastOptions__initialize, 3}, - {"_arrow_Array__cast", (DL_FUNC)&_arrow_Array__cast, 3}, - {"_arrow_ChunkedArray__cast", (DL_FUNC)&_arrow_ChunkedArray__cast, 3}, - {"_arrow_RecordBatch__cast", (DL_FUNC)&_arrow_RecordBatch__cast, 3}, - {"_arrow_Table__cast", (DL_FUNC)&_arrow_Table__cast, 3}, - {"_arrow_Array__Take", (DL_FUNC)&_arrow_Array__Take, 2}, - {"_arrow_Array__TakeChunked", (DL_FUNC)&_arrow_Array__TakeChunked, 2}, - {"_arrow_RecordBatch__Take", (DL_FUNC)&_arrow_RecordBatch__Take, 2}, - {"_arrow_ChunkedArray__Take", (DL_FUNC)&_arrow_ChunkedArray__Take, 2}, - {"_arrow_ChunkedArray__TakeChunked", (DL_FUNC)&_arrow_ChunkedArray__TakeChunked, 2}, - {"_arrow_Table__Take", (DL_FUNC)&_arrow_Table__Take, 2}, - {"_arrow_Table__TakeChunked", (DL_FUNC)&_arrow_Table__TakeChunked, 2}, - {"_arrow_Array__Filter", (DL_FUNC)&_arrow_Array__Filter, 2}, - {"_arrow_RecordBatch__Filter", (DL_FUNC)&_arrow_RecordBatch__Filter, 2}, - {"_arrow_ChunkedArray__Filter", (DL_FUNC)&_arrow_ChunkedArray__Filter, 2}, - {"_arrow_ChunkedArray__FilterChunked", (DL_FUNC)&_arrow_ChunkedArray__FilterChunked, - 2}, - {"_arrow_Table__Filter", (DL_FUNC)&_arrow_Table__Filter, 2}, - {"_arrow_Table__FilterChunked", (DL_FUNC)&_arrow_Table__FilterChunked, 2}, - {"_arrow_csv___ReadOptions__initialize", - (DL_FUNC)&_arrow_csv___ReadOptions__initialize, 1}, - {"_arrow_csv___ParseOptions__initialize", - (DL_FUNC)&_arrow_csv___ParseOptions__initialize, 1}, - {"_arrow_csv___ConvertOptions__initialize", - (DL_FUNC)&_arrow_csv___ConvertOptions__initialize, 1}, - {"_arrow_csv___TableReader__Make", (DL_FUNC)&_arrow_csv___TableReader__Make, 4}, - {"_arrow_csv___TableReader__Read", (DL_FUNC)&_arrow_csv___TableReader__Read, 1}, - {"_arrow_dataset___FSSFactory__Make2", (DL_FUNC)&_arrow_dataset___FSSFactory__Make2, - 4}, - {"_arrow_dataset___FSSFactory__Make1", (DL_FUNC)&_arrow_dataset___FSSFactory__Make1, - 3}, - {"_arrow_dataset___FSSFactory__Make3", (DL_FUNC)&_arrow_dataset___FSSFactory__Make3, - 4}, -<<<<<<< HEAD - {"_arrow_dataset___FileFormat__type_name", - (DL_FUNC)&_arrow_dataset___FileFormat__type_name, 1}, - {"_arrow_dataset___ParquetFileFormat__Make", - (DL_FUNC)&_arrow_dataset___ParquetFileFormat__Make, 0}, - {"_arrow_dataset___IpcFileFormat__Make", - (DL_FUNC)&_arrow_dataset___IpcFileFormat__Make, 0}, -======= - {"_arrow_dataset___ParquetFileFormat__Make", - (DL_FUNC)&_arrow_dataset___ParquetFileFormat__Make, 1}, - {"_arrow_dataset___IpcFileFormat__Make", - (DL_FUNC)&_arrow_dataset___IpcFileFormat__Make, 1}, ->>>>>>> add bindings to parquet file format properties in R and python - {"_arrow_dataset___SFactory__Finish1", (DL_FUNC)&_arrow_dataset___SFactory__Finish1, - 1}, - {"_arrow_dataset___SFactory__Finish2", (DL_FUNC)&_arrow_dataset___SFactory__Finish2, - 2}, - {"_arrow_dataset___SFactory__Inspect", (DL_FUNC)&_arrow_dataset___SFactory__Inspect, - 1}, - {"_arrow_dataset___Source__schema", (DL_FUNC)&_arrow_dataset___Source__schema, 1}, - {"_arrow_dataset___Source__type_name", (DL_FUNC)&_arrow_dataset___Source__type_name, - 1}, - {"_arrow_dataset___FSSource__format", (DL_FUNC)&_arrow_dataset___FSSource__format, 1}, - {"_arrow_dataset___FSSource__files", (DL_FUNC)&_arrow_dataset___FSSource__files, 1}, - {"_arrow_dataset___DFactory__Make", (DL_FUNC)&_arrow_dataset___DFactory__Make, 1}, - {"_arrow_dataset___DFactory__Inspect", (DL_FUNC)&_arrow_dataset___DFactory__Inspect, - 1}, - {"_arrow_dataset___DFactory__Finish1", (DL_FUNC)&_arrow_dataset___DFactory__Finish1, - 1}, - {"_arrow_dataset___DFactory__Finish2", (DL_FUNC)&_arrow_dataset___DFactory__Finish2, - 2}, - {"_arrow_dataset___DirectoryPartitioning", - (DL_FUNC)&_arrow_dataset___DirectoryPartitioning, 1}, - {"_arrow_dataset___DirectoryPartitioning__MakeFactory", - (DL_FUNC)&_arrow_dataset___DirectoryPartitioning__MakeFactory, 1}, - {"_arrow_dataset___HivePartitioning", (DL_FUNC)&_arrow_dataset___HivePartitioning, 1}, - {"_arrow_dataset___HivePartitioning__MakeFactory", - (DL_FUNC)&_arrow_dataset___HivePartitioning__MakeFactory, 0}, - {"_arrow_dataset___Dataset__create", (DL_FUNC)&_arrow_dataset___Dataset__create, 2}, - {"_arrow_dataset___Dataset__schema", (DL_FUNC)&_arrow_dataset___Dataset__schema, 1}, - {"_arrow_dataset___Dataset__sources", (DL_FUNC)&_arrow_dataset___Dataset__sources, 1}, - {"_arrow_dataset___Dataset__NewScan", (DL_FUNC)&_arrow_dataset___Dataset__NewScan, 1}, - {"_arrow_dataset___ScannerBuilder__Project", - (DL_FUNC)&_arrow_dataset___ScannerBuilder__Project, 2}, - {"_arrow_dataset___ScannerBuilder__Filter", - (DL_FUNC)&_arrow_dataset___ScannerBuilder__Filter, 2}, - {"_arrow_dataset___ScannerBuilder__UseThreads", - (DL_FUNC)&_arrow_dataset___ScannerBuilder__UseThreads, 2}, - {"_arrow_dataset___ScannerBuilder__schema", - (DL_FUNC)&_arrow_dataset___ScannerBuilder__schema, 1}, - {"_arrow_dataset___ScannerBuilder__Finish", - (DL_FUNC)&_arrow_dataset___ScannerBuilder__Finish, 1}, - {"_arrow_dataset___Scanner__ToTable", (DL_FUNC)&_arrow_dataset___Scanner__ToTable, 1}, - {"_arrow_shared_ptr_is_null", (DL_FUNC)&_arrow_shared_ptr_is_null, 1}, - {"_arrow_unique_ptr_is_null", (DL_FUNC)&_arrow_unique_ptr_is_null, 1}, - {"_arrow_Int8__initialize", (DL_FUNC)&_arrow_Int8__initialize, 0}, - {"_arrow_Int16__initialize", (DL_FUNC)&_arrow_Int16__initialize, 0}, - {"_arrow_Int32__initialize", (DL_FUNC)&_arrow_Int32__initialize, 0}, - {"_arrow_Int64__initialize", (DL_FUNC)&_arrow_Int64__initialize, 0}, - {"_arrow_UInt8__initialize", (DL_FUNC)&_arrow_UInt8__initialize, 0}, - {"_arrow_UInt16__initialize", (DL_FUNC)&_arrow_UInt16__initialize, 0}, - {"_arrow_UInt32__initialize", (DL_FUNC)&_arrow_UInt32__initialize, 0}, - {"_arrow_UInt64__initialize", (DL_FUNC)&_arrow_UInt64__initialize, 0}, - {"_arrow_Float16__initialize", (DL_FUNC)&_arrow_Float16__initialize, 0}, - {"_arrow_Float32__initialize", (DL_FUNC)&_arrow_Float32__initialize, 0}, - {"_arrow_Float64__initialize", (DL_FUNC)&_arrow_Float64__initialize, 0}, - {"_arrow_Boolean__initialize", (DL_FUNC)&_arrow_Boolean__initialize, 0}, - {"_arrow_Utf8__initialize", (DL_FUNC)&_arrow_Utf8__initialize, 0}, - {"_arrow_Date32__initialize", (DL_FUNC)&_arrow_Date32__initialize, 0}, - {"_arrow_Date64__initialize", (DL_FUNC)&_arrow_Date64__initialize, 0}, - {"_arrow_Null__initialize", (DL_FUNC)&_arrow_Null__initialize, 0}, - {"_arrow_Decimal128Type__initialize", (DL_FUNC)&_arrow_Decimal128Type__initialize, 2}, - {"_arrow_FixedSizeBinary__initialize", (DL_FUNC)&_arrow_FixedSizeBinary__initialize, - 1}, - {"_arrow_Timestamp__initialize1", (DL_FUNC)&_arrow_Timestamp__initialize1, 1}, - {"_arrow_Timestamp__initialize2", (DL_FUNC)&_arrow_Timestamp__initialize2, 2}, - {"_arrow_Time32__initialize", (DL_FUNC)&_arrow_Time32__initialize, 1}, - {"_arrow_Time64__initialize", (DL_FUNC)&_arrow_Time64__initialize, 1}, - {"_arrow_list__", (DL_FUNC)&_arrow_list__, 1}, - {"_arrow_struct_", (DL_FUNC)&_arrow_struct_, 1}, - {"_arrow_DataType__ToString", (DL_FUNC)&_arrow_DataType__ToString, 1}, - {"_arrow_DataType__name", (DL_FUNC)&_arrow_DataType__name, 1}, - {"_arrow_DataType__Equals", (DL_FUNC)&_arrow_DataType__Equals, 2}, - {"_arrow_DataType__num_children", (DL_FUNC)&_arrow_DataType__num_children, 1}, - {"_arrow_DataType__children_pointer", (DL_FUNC)&_arrow_DataType__children_pointer, 1}, - {"_arrow_DataType__id", (DL_FUNC)&_arrow_DataType__id, 1}, - {"_arrow_ListType__ToString", (DL_FUNC)&_arrow_ListType__ToString, 1}, - {"_arrow_FixedWidthType__bit_width", (DL_FUNC)&_arrow_FixedWidthType__bit_width, 1}, - {"_arrow_DateType__unit", (DL_FUNC)&_arrow_DateType__unit, 1}, - {"_arrow_TimeType__unit", (DL_FUNC)&_arrow_TimeType__unit, 1}, - {"_arrow_DecimalType__precision", (DL_FUNC)&_arrow_DecimalType__precision, 1}, - {"_arrow_DecimalType__scale", (DL_FUNC)&_arrow_DecimalType__scale, 1}, - {"_arrow_TimestampType__timezone", (DL_FUNC)&_arrow_TimestampType__timezone, 1}, - {"_arrow_TimestampType__unit", (DL_FUNC)&_arrow_TimestampType__unit, 1}, - {"_arrow_DictionaryType__initialize", (DL_FUNC)&_arrow_DictionaryType__initialize, 3}, - {"_arrow_DictionaryType__index_type", (DL_FUNC)&_arrow_DictionaryType__index_type, 1}, - {"_arrow_DictionaryType__value_type", (DL_FUNC)&_arrow_DictionaryType__value_type, 1}, - {"_arrow_DictionaryType__name", (DL_FUNC)&_arrow_DictionaryType__name, 1}, - {"_arrow_DictionaryType__ordered", (DL_FUNC)&_arrow_DictionaryType__ordered, 1}, - {"_arrow_StructType__GetFieldByName", (DL_FUNC)&_arrow_StructType__GetFieldByName, 2}, - {"_arrow_StructType__GetFieldIndex", (DL_FUNC)&_arrow_StructType__GetFieldIndex, 2}, - {"_arrow_ListType__value_field", (DL_FUNC)&_arrow_ListType__value_field, 1}, - {"_arrow_ListType__value_type", (DL_FUNC)&_arrow_ListType__value_type, 1}, - {"_arrow_dataset___expr__field_ref", (DL_FUNC)&_arrow_dataset___expr__field_ref, 1}, - {"_arrow_dataset___expr__equal", (DL_FUNC)&_arrow_dataset___expr__equal, 2}, - {"_arrow_dataset___expr__not_equal", (DL_FUNC)&_arrow_dataset___expr__not_equal, 2}, - {"_arrow_dataset___expr__greater", (DL_FUNC)&_arrow_dataset___expr__greater, 2}, - {"_arrow_dataset___expr__greater_equal", - (DL_FUNC)&_arrow_dataset___expr__greater_equal, 2}, - {"_arrow_dataset___expr__less", (DL_FUNC)&_arrow_dataset___expr__less, 2}, - {"_arrow_dataset___expr__less_equal", (DL_FUNC)&_arrow_dataset___expr__less_equal, 2}, - {"_arrow_dataset___expr__in", (DL_FUNC)&_arrow_dataset___expr__in, 2}, - {"_arrow_dataset___expr__and", (DL_FUNC)&_arrow_dataset___expr__and, 2}, - {"_arrow_dataset___expr__or", (DL_FUNC)&_arrow_dataset___expr__or, 2}, - {"_arrow_dataset___expr__not", (DL_FUNC)&_arrow_dataset___expr__not, 1}, - {"_arrow_dataset___expr__is_valid", (DL_FUNC)&_arrow_dataset___expr__is_valid, 1}, - {"_arrow_dataset___expr__scalar", (DL_FUNC)&_arrow_dataset___expr__scalar, 1}, - {"_arrow_dataset___expr__ToString", (DL_FUNC)&_arrow_dataset___expr__ToString, 1}, - {"_arrow_ipc___feather___TableWriter__SetDescription", - (DL_FUNC)&_arrow_ipc___feather___TableWriter__SetDescription, 2}, - {"_arrow_ipc___feather___TableWriter__SetNumRows", - (DL_FUNC)&_arrow_ipc___feather___TableWriter__SetNumRows, 2}, - {"_arrow_ipc___feather___TableWriter__Append", - (DL_FUNC)&_arrow_ipc___feather___TableWriter__Append, 3}, - {"_arrow_ipc___feather___TableWriter__Finalize", - (DL_FUNC)&_arrow_ipc___feather___TableWriter__Finalize, 1}, - {"_arrow_ipc___feather___TableWriter__Open", - (DL_FUNC)&_arrow_ipc___feather___TableWriter__Open, 1}, - {"_arrow_ipc___TableWriter__RecordBatch__WriteFeather", - (DL_FUNC)&_arrow_ipc___TableWriter__RecordBatch__WriteFeather, 2}, - {"_arrow_ipc___feather___TableReader__GetDescription", - (DL_FUNC)&_arrow_ipc___feather___TableReader__GetDescription, 1}, - {"_arrow_ipc___feather___TableReader__HasDescription", - (DL_FUNC)&_arrow_ipc___feather___TableReader__HasDescription, 1}, - {"_arrow_ipc___feather___TableReader__version", - (DL_FUNC)&_arrow_ipc___feather___TableReader__version, 1}, - {"_arrow_ipc___feather___TableReader__num_rows", - (DL_FUNC)&_arrow_ipc___feather___TableReader__num_rows, 1}, - {"_arrow_ipc___feather___TableReader__num_columns", - (DL_FUNC)&_arrow_ipc___feather___TableReader__num_columns, 1}, - {"_arrow_ipc___feather___TableReader__GetColumnName", - (DL_FUNC)&_arrow_ipc___feather___TableReader__GetColumnName, 2}, - {"_arrow_ipc___feather___TableReader__GetColumn", - (DL_FUNC)&_arrow_ipc___feather___TableReader__GetColumn, 2}, - {"_arrow_ipc___feather___TableReader__Read", - (DL_FUNC)&_arrow_ipc___feather___TableReader__Read, 2}, - {"_arrow_ipc___feather___TableReader__Open", - (DL_FUNC)&_arrow_ipc___feather___TableReader__Open, 1}, - {"_arrow_ipc___feather___TableReader__column_names", - (DL_FUNC)&_arrow_ipc___feather___TableReader__column_names, 1}, - {"_arrow_Field__initialize", (DL_FUNC)&_arrow_Field__initialize, 3}, - {"_arrow_Field__ToString", (DL_FUNC)&_arrow_Field__ToString, 1}, - {"_arrow_Field__name", (DL_FUNC)&_arrow_Field__name, 1}, - {"_arrow_Field__Equals", (DL_FUNC)&_arrow_Field__Equals, 2}, - {"_arrow_Field__nullable", (DL_FUNC)&_arrow_Field__nullable, 1}, - {"_arrow_Field__type", (DL_FUNC)&_arrow_Field__type, 1}, - {"_arrow_fs___FileStats__type", (DL_FUNC)&_arrow_fs___FileStats__type, 1}, - {"_arrow_fs___FileStats__set_type", (DL_FUNC)&_arrow_fs___FileStats__set_type, 2}, - {"_arrow_fs___FileStats__path", (DL_FUNC)&_arrow_fs___FileStats__path, 1}, - {"_arrow_fs___FileStats__set_path", (DL_FUNC)&_arrow_fs___FileStats__set_path, 2}, - {"_arrow_fs___FileStats__size", (DL_FUNC)&_arrow_fs___FileStats__size, 1}, - {"_arrow_fs___FileStats__set_size", (DL_FUNC)&_arrow_fs___FileStats__set_size, 2}, - {"_arrow_fs___FileStats__base_name", (DL_FUNC)&_arrow_fs___FileStats__base_name, 1}, - {"_arrow_fs___FileStats__extension", (DL_FUNC)&_arrow_fs___FileStats__extension, 1}, - {"_arrow_fs___FileStats__mtime", (DL_FUNC)&_arrow_fs___FileStats__mtime, 1}, - {"_arrow_fs___FileStats__set_mtime", (DL_FUNC)&_arrow_fs___FileStats__set_mtime, 2}, - {"_arrow_fs___FileSelector__base_dir", (DL_FUNC)&_arrow_fs___FileSelector__base_dir, - 1}, - {"_arrow_fs___FileSelector__allow_non_existent", - (DL_FUNC)&_arrow_fs___FileSelector__allow_non_existent, 1}, - {"_arrow_fs___FileSelector__recursive", (DL_FUNC)&_arrow_fs___FileSelector__recursive, - 1}, - {"_arrow_fs___FileSelector__create", (DL_FUNC)&_arrow_fs___FileSelector__create, 3}, - {"_arrow_fs___FileSystem__GetTargetStats_Paths", - (DL_FUNC)&_arrow_fs___FileSystem__GetTargetStats_Paths, 2}, - {"_arrow_fs___FileSystem__GetTargetStats_FileSelector", - (DL_FUNC)&_arrow_fs___FileSystem__GetTargetStats_FileSelector, 2}, - {"_arrow_fs___FileSystem__CreateDir", (DL_FUNC)&_arrow_fs___FileSystem__CreateDir, 3}, - {"_arrow_fs___FileSystem__DeleteDir", (DL_FUNC)&_arrow_fs___FileSystem__DeleteDir, 2}, - {"_arrow_fs___FileSystem__DeleteDirContents", - (DL_FUNC)&_arrow_fs___FileSystem__DeleteDirContents, 2}, - {"_arrow_fs___FileSystem__DeleteFile", (DL_FUNC)&_arrow_fs___FileSystem__DeleteFile, - 2}, - {"_arrow_fs___FileSystem__DeleteFiles", (DL_FUNC)&_arrow_fs___FileSystem__DeleteFiles, - 2}, - {"_arrow_fs___FileSystem__Move", (DL_FUNC)&_arrow_fs___FileSystem__Move, 3}, - {"_arrow_fs___FileSystem__CopyFile", (DL_FUNC)&_arrow_fs___FileSystem__CopyFile, 3}, - {"_arrow_fs___FileSystem__OpenInputStream", - (DL_FUNC)&_arrow_fs___FileSystem__OpenInputStream, 2}, - {"_arrow_fs___FileSystem__OpenInputFile", - (DL_FUNC)&_arrow_fs___FileSystem__OpenInputFile, 2}, - {"_arrow_fs___FileSystem__OpenOutputStream", - (DL_FUNC)&_arrow_fs___FileSystem__OpenOutputStream, 2}, - {"_arrow_fs___FileSystem__OpenAppendStream", - (DL_FUNC)&_arrow_fs___FileSystem__OpenAppendStream, 2}, - {"_arrow_fs___LocalFileSystem__create", (DL_FUNC)&_arrow_fs___LocalFileSystem__create, - 0}, - {"_arrow_fs___SubTreeFileSystem__create", - (DL_FUNC)&_arrow_fs___SubTreeFileSystem__create, 2}, - {"_arrow_io___Readable__Read", (DL_FUNC)&_arrow_io___Readable__Read, 2}, - {"_arrow_io___InputStream__Close", (DL_FUNC)&_arrow_io___InputStream__Close, 1}, - {"_arrow_io___OutputStream__Close", (DL_FUNC)&_arrow_io___OutputStream__Close, 1}, - {"_arrow_io___RandomAccessFile__GetSize", - (DL_FUNC)&_arrow_io___RandomAccessFile__GetSize, 1}, - {"_arrow_io___RandomAccessFile__supports_zero_copy", - (DL_FUNC)&_arrow_io___RandomAccessFile__supports_zero_copy, 1}, - {"_arrow_io___RandomAccessFile__Seek", (DL_FUNC)&_arrow_io___RandomAccessFile__Seek, - 2}, - {"_arrow_io___RandomAccessFile__Tell", (DL_FUNC)&_arrow_io___RandomAccessFile__Tell, - 1}, - {"_arrow_io___RandomAccessFile__Read0", (DL_FUNC)&_arrow_io___RandomAccessFile__Read0, - 1}, - {"_arrow_io___RandomAccessFile__ReadAt", - (DL_FUNC)&_arrow_io___RandomAccessFile__ReadAt, 3}, - {"_arrow_io___MemoryMappedFile__Create", - (DL_FUNC)&_arrow_io___MemoryMappedFile__Create, 2}, - {"_arrow_io___MemoryMappedFile__Open", (DL_FUNC)&_arrow_io___MemoryMappedFile__Open, - 2}, - {"_arrow_io___MemoryMappedFile__Resize", - (DL_FUNC)&_arrow_io___MemoryMappedFile__Resize, 2}, - {"_arrow_io___ReadableFile__Open", (DL_FUNC)&_arrow_io___ReadableFile__Open, 1}, - {"_arrow_io___BufferReader__initialize", - (DL_FUNC)&_arrow_io___BufferReader__initialize, 1}, - {"_arrow_io___Writable__write", (DL_FUNC)&_arrow_io___Writable__write, 2}, - {"_arrow_io___OutputStream__Tell", (DL_FUNC)&_arrow_io___OutputStream__Tell, 1}, - {"_arrow_io___FileOutputStream__Open", (DL_FUNC)&_arrow_io___FileOutputStream__Open, - 1}, - {"_arrow_io___BufferOutputStream__Create", - (DL_FUNC)&_arrow_io___BufferOutputStream__Create, 1}, - {"_arrow_io___BufferOutputStream__capacity", - (DL_FUNC)&_arrow_io___BufferOutputStream__capacity, 1}, - {"_arrow_io___BufferOutputStream__Finish", - (DL_FUNC)&_arrow_io___BufferOutputStream__Finish, 1}, - {"_arrow_io___BufferOutputStream__Tell", - (DL_FUNC)&_arrow_io___BufferOutputStream__Tell, 1}, - {"_arrow_io___BufferOutputStream__Write", - (DL_FUNC)&_arrow_io___BufferOutputStream__Write, 2}, - {"_arrow_io___MockOutputStream__initialize", - (DL_FUNC)&_arrow_io___MockOutputStream__initialize, 0}, - {"_arrow_io___MockOutputStream__GetExtentBytesWritten", - (DL_FUNC)&_arrow_io___MockOutputStream__GetExtentBytesWritten, 1}, - {"_arrow_io___FixedSizeBufferWriter__initialize", - (DL_FUNC)&_arrow_io___FixedSizeBufferWriter__initialize, 1}, - {"_arrow_json___ReadOptions__initialize", - (DL_FUNC)&_arrow_json___ReadOptions__initialize, 1}, - {"_arrow_json___ParseOptions__initialize", - (DL_FUNC)&_arrow_json___ParseOptions__initialize, 1}, - {"_arrow_json___TableReader__Make", (DL_FUNC)&_arrow_json___TableReader__Make, 3}, - {"_arrow_json___TableReader__Read", (DL_FUNC)&_arrow_json___TableReader__Read, 1}, - {"_arrow_MemoryPool__default", (DL_FUNC)&_arrow_MemoryPool__default, 0}, - {"_arrow_MemoryPool__bytes_allocated", (DL_FUNC)&_arrow_MemoryPool__bytes_allocated, - 1}, - {"_arrow_MemoryPool__max_memory", (DL_FUNC)&_arrow_MemoryPool__max_memory, 1}, - {"_arrow_ipc___Message__body_length", (DL_FUNC)&_arrow_ipc___Message__body_length, 1}, - {"_arrow_ipc___Message__metadata", (DL_FUNC)&_arrow_ipc___Message__metadata, 1}, - {"_arrow_ipc___Message__body", (DL_FUNC)&_arrow_ipc___Message__body, 1}, - {"_arrow_ipc___Message__Verify", (DL_FUNC)&_arrow_ipc___Message__Verify, 1}, - {"_arrow_ipc___Message__type", (DL_FUNC)&_arrow_ipc___Message__type, 1}, - {"_arrow_ipc___Message__Equals", (DL_FUNC)&_arrow_ipc___Message__Equals, 2}, - {"_arrow_ipc___ReadRecordBatch__Message__Schema", - (DL_FUNC)&_arrow_ipc___ReadRecordBatch__Message__Schema, 2}, - {"_arrow_ipc___ReadSchema_InputStream", (DL_FUNC)&_arrow_ipc___ReadSchema_InputStream, - 1}, - {"_arrow_ipc___ReadSchema_Message", (DL_FUNC)&_arrow_ipc___ReadSchema_Message, 1}, - {"_arrow_ipc___MessageReader__Open", (DL_FUNC)&_arrow_ipc___MessageReader__Open, 1}, - {"_arrow_ipc___MessageReader__ReadNextMessage", - (DL_FUNC)&_arrow_ipc___MessageReader__ReadNextMessage, 1}, - {"_arrow_ipc___ReadMessage", (DL_FUNC)&_arrow_ipc___ReadMessage, 1}, - {"_arrow_parquet___arrow___ArrowReaderProperties__Make", - (DL_FUNC)&_arrow_parquet___arrow___ArrowReaderProperties__Make, 1}, - {"_arrow_parquet___arrow___ArrowReaderProperties__set_use_threads", - (DL_FUNC)&_arrow_parquet___arrow___ArrowReaderProperties__set_use_threads, 2}, - {"_arrow_parquet___arrow___ArrowReaderProperties__get_use_threads", - (DL_FUNC)&_arrow_parquet___arrow___ArrowReaderProperties__get_use_threads, 2}, - {"_arrow_parquet___arrow___ArrowReaderProperties__get_read_dictionary", - (DL_FUNC)&_arrow_parquet___arrow___ArrowReaderProperties__get_read_dictionary, 2}, - {"_arrow_parquet___arrow___ArrowReaderProperties__set_read_dictionary", - (DL_FUNC)&_arrow_parquet___arrow___ArrowReaderProperties__set_read_dictionary, 3}, - {"_arrow_parquet___arrow___FileReader__OpenFile", - (DL_FUNC)&_arrow_parquet___arrow___FileReader__OpenFile, 2}, - {"_arrow_parquet___arrow___FileReader__ReadTable1", - (DL_FUNC)&_arrow_parquet___arrow___FileReader__ReadTable1, 1}, - {"_arrow_parquet___arrow___FileReader__ReadTable2", - (DL_FUNC)&_arrow_parquet___arrow___FileReader__ReadTable2, 2}, - {"_arrow_parquet___ArrowWriterProperties___Builder__create", - (DL_FUNC)&_arrow_parquet___ArrowWriterProperties___Builder__create, 0}, - {"_arrow_parquet___ArrowWriterProperties___Builder__store_schema", - (DL_FUNC)&_arrow_parquet___ArrowWriterProperties___Builder__store_schema, 1}, - {"_arrow_parquet___ArrowWriterProperties___Builder__enable_deprecated_int96_" - "timestamps", - (DL_FUNC)&_arrow_parquet___ArrowWriterProperties___Builder__enable_deprecated_int96_timestamps, - 1}, - {"_arrow_parquet___ArrowWriterProperties___Builder__disable_deprecated_int96_" - "timestamps", - (DL_FUNC)&_arrow_parquet___ArrowWriterProperties___Builder__disable_deprecated_int96_timestamps, - 1}, - {"_arrow_parquet___ArrowWriterProperties___Builder__coerce_timestamps", - (DL_FUNC)&_arrow_parquet___ArrowWriterProperties___Builder__coerce_timestamps, 2}, - {"_arrow_parquet___ArrowWriterProperties___Builder__allow_truncated_timestamps", - (DL_FUNC)&_arrow_parquet___ArrowWriterProperties___Builder__allow_truncated_timestamps, - 1}, - {"_arrow_parquet___ArrowWriterProperties___Builder__disallow_truncated_timestamps", - (DL_FUNC)&_arrow_parquet___ArrowWriterProperties___Builder__disallow_truncated_timestamps, - 1}, - {"_arrow_parquet___ArrowWriterProperties___Builder__build", - (DL_FUNC)&_arrow_parquet___ArrowWriterProperties___Builder__build, 1}, - {"_arrow_parquet___default_writer_properties", - (DL_FUNC)&_arrow_parquet___default_writer_properties, 0}, - {"_arrow_parquet___WriterProperties___Builder__create", - (DL_FUNC)&_arrow_parquet___WriterProperties___Builder__create, 0}, - {"_arrow_parquet___WriterProperties___Builder__version", - (DL_FUNC)&_arrow_parquet___WriterProperties___Builder__version, 2}, - {"_arrow_parquet___ArrowWriterProperties___Builder__default_compression", - (DL_FUNC)&_arrow_parquet___ArrowWriterProperties___Builder__default_compression, 2}, - {"_arrow_parquet___ArrowWriterProperties___Builder__set_compressions", - (DL_FUNC)&_arrow_parquet___ArrowWriterProperties___Builder__set_compressions, 3}, - {"_arrow_parquet___ArrowWriterProperties___Builder__default_compression_level", - (DL_FUNC)&_arrow_parquet___ArrowWriterProperties___Builder__default_compression_level, - 2}, - {"_arrow_parquet___ArrowWriterProperties___Builder__set_compression_levels", - (DL_FUNC)&_arrow_parquet___ArrowWriterProperties___Builder__set_compression_levels, - 3}, - {"_arrow_parquet___ArrowWriterProperties___Builder__default_write_statistics", - (DL_FUNC)&_arrow_parquet___ArrowWriterProperties___Builder__default_write_statistics, - 2}, - {"_arrow_parquet___ArrowWriterProperties___Builder__default_use_dictionary", - (DL_FUNC)&_arrow_parquet___ArrowWriterProperties___Builder__default_use_dictionary, - 2}, - {"_arrow_parquet___ArrowWriterProperties___Builder__set_use_dictionary", - (DL_FUNC)&_arrow_parquet___ArrowWriterProperties___Builder__set_use_dictionary, 3}, - {"_arrow_parquet___ArrowWriterProperties___Builder__set_write_statistics", - (DL_FUNC)&_arrow_parquet___ArrowWriterProperties___Builder__set_write_statistics, 3}, - {"_arrow_parquet___ArrowWriterProperties___Builder__data_page_size", - (DL_FUNC)&_arrow_parquet___ArrowWriterProperties___Builder__data_page_size, 2}, - {"_arrow_parquet___WriterProperties___Builder__build", - (DL_FUNC)&_arrow_parquet___WriterProperties___Builder__build, 1}, - {"_arrow_parquet___arrow___ParquetFileWriter__Open", - (DL_FUNC)&_arrow_parquet___arrow___ParquetFileWriter__Open, 4}, - {"_arrow_parquet___arrow___FileWriter__WriteTable", - (DL_FUNC)&_arrow_parquet___arrow___FileWriter__WriteTable, 3}, - {"_arrow_parquet___arrow___FileWriter__Close", - (DL_FUNC)&_arrow_parquet___arrow___FileWriter__Close, 1}, - {"_arrow_parquet___arrow___WriteTable", (DL_FUNC)&_arrow_parquet___arrow___WriteTable, - 4}, - {"_arrow_parquet___arrow___FileReader__GetSchema", - (DL_FUNC)&_arrow_parquet___arrow___FileReader__GetSchema, 1}, - {"_arrow_RecordBatch__num_columns", (DL_FUNC)&_arrow_RecordBatch__num_columns, 1}, - {"_arrow_RecordBatch__num_rows", (DL_FUNC)&_arrow_RecordBatch__num_rows, 1}, - {"_arrow_RecordBatch__schema", (DL_FUNC)&_arrow_RecordBatch__schema, 1}, - {"_arrow_RecordBatch__columns", (DL_FUNC)&_arrow_RecordBatch__columns, 1}, - {"_arrow_RecordBatch__column", (DL_FUNC)&_arrow_RecordBatch__column, 2}, - {"_arrow_RecordBatch__GetColumnByName", (DL_FUNC)&_arrow_RecordBatch__GetColumnByName, - 2}, - {"_arrow_RecordBatch__select", (DL_FUNC)&_arrow_RecordBatch__select, 2}, - {"_arrow_RecordBatch__from_dataframe", (DL_FUNC)&_arrow_RecordBatch__from_dataframe, - 1}, - {"_arrow_RecordBatch__Equals", (DL_FUNC)&_arrow_RecordBatch__Equals, 2}, - {"_arrow_RecordBatch__RemoveColumn", (DL_FUNC)&_arrow_RecordBatch__RemoveColumn, 2}, - {"_arrow_RecordBatch__column_name", (DL_FUNC)&_arrow_RecordBatch__column_name, 2}, - {"_arrow_RecordBatch__names", (DL_FUNC)&_arrow_RecordBatch__names, 1}, - {"_arrow_RecordBatch__Slice1", (DL_FUNC)&_arrow_RecordBatch__Slice1, 2}, - {"_arrow_RecordBatch__Slice2", (DL_FUNC)&_arrow_RecordBatch__Slice2, 3}, - {"_arrow_ipc___SerializeRecordBatch__Raw", - (DL_FUNC)&_arrow_ipc___SerializeRecordBatch__Raw, 1}, - {"_arrow_ipc___ReadRecordBatch__InputStream__Schema", - (DL_FUNC)&_arrow_ipc___ReadRecordBatch__InputStream__Schema, 2}, - {"_arrow_RecordBatch__from_arrays", (DL_FUNC)&_arrow_RecordBatch__from_arrays, 2}, - {"_arrow_RecordBatchReader__schema", (DL_FUNC)&_arrow_RecordBatchReader__schema, 1}, - {"_arrow_RecordBatchReader__ReadNext", (DL_FUNC)&_arrow_RecordBatchReader__ReadNext, - 1}, - {"_arrow_ipc___RecordBatchStreamReader__Open", - (DL_FUNC)&_arrow_ipc___RecordBatchStreamReader__Open, 1}, - {"_arrow_ipc___RecordBatchStreamReader__batches", - (DL_FUNC)&_arrow_ipc___RecordBatchStreamReader__batches, 1}, - {"_arrow_ipc___RecordBatchFileReader__schema", - (DL_FUNC)&_arrow_ipc___RecordBatchFileReader__schema, 1}, - {"_arrow_ipc___RecordBatchFileReader__num_record_batches", - (DL_FUNC)&_arrow_ipc___RecordBatchFileReader__num_record_batches, 1}, - {"_arrow_ipc___RecordBatchFileReader__ReadRecordBatch", - (DL_FUNC)&_arrow_ipc___RecordBatchFileReader__ReadRecordBatch, 2}, - {"_arrow_ipc___RecordBatchFileReader__Open", - (DL_FUNC)&_arrow_ipc___RecordBatchFileReader__Open, 1}, - {"_arrow_Table__from_RecordBatchFileReader", - (DL_FUNC)&_arrow_Table__from_RecordBatchFileReader, 1}, - {"_arrow_Table__from_RecordBatchStreamReader", - (DL_FUNC)&_arrow_Table__from_RecordBatchStreamReader, 1}, - {"_arrow_ipc___RecordBatchFileReader__batches", - (DL_FUNC)&_arrow_ipc___RecordBatchFileReader__batches, 1}, - {"_arrow_ipc___RecordBatchWriter__WriteRecordBatch", - (DL_FUNC)&_arrow_ipc___RecordBatchWriter__WriteRecordBatch, 2}, - {"_arrow_ipc___RecordBatchWriter__WriteTable", - (DL_FUNC)&_arrow_ipc___RecordBatchWriter__WriteTable, 2}, - {"_arrow_ipc___RecordBatchWriter__Close", - (DL_FUNC)&_arrow_ipc___RecordBatchWriter__Close, 1}, - {"_arrow_ipc___RecordBatchFileWriter__Open", - (DL_FUNC)&_arrow_ipc___RecordBatchFileWriter__Open, 3}, - {"_arrow_ipc___RecordBatchStreamWriter__Open", - (DL_FUNC)&_arrow_ipc___RecordBatchStreamWriter__Open, 3}, - {"_arrow_schema_", (DL_FUNC)&_arrow_schema_, 1}, - {"_arrow_Schema__ToString", (DL_FUNC)&_arrow_Schema__ToString, 1}, - {"_arrow_Schema__num_fields", (DL_FUNC)&_arrow_Schema__num_fields, 1}, - {"_arrow_Schema__field", (DL_FUNC)&_arrow_Schema__field, 2}, - {"_arrow_Schema__GetFieldByName", (DL_FUNC)&_arrow_Schema__GetFieldByName, 2}, - {"_arrow_Schema__fields", (DL_FUNC)&_arrow_Schema__fields, 1}, - {"_arrow_Schema__field_names", (DL_FUNC)&_arrow_Schema__field_names, 1}, - {"_arrow_Schema__HasMetadata", (DL_FUNC)&_arrow_Schema__HasMetadata, 1}, - {"_arrow_Schema__metadata", (DL_FUNC)&_arrow_Schema__metadata, 1}, - {"_arrow_Schema__WithMetadata", (DL_FUNC)&_arrow_Schema__WithMetadata, 2}, - {"_arrow_Schema__serialize", (DL_FUNC)&_arrow_Schema__serialize, 1}, - {"_arrow_Schema__Equals", (DL_FUNC)&_arrow_Schema__Equals, 3}, - {"_arrow_Table__from_dataframe", (DL_FUNC)&_arrow_Table__from_dataframe, 1}, - {"_arrow_Table__num_columns", (DL_FUNC)&_arrow_Table__num_columns, 1}, - {"_arrow_Table__num_rows", (DL_FUNC)&_arrow_Table__num_rows, 1}, - {"_arrow_Table__schema", (DL_FUNC)&_arrow_Table__schema, 1}, - {"_arrow_Table__column", (DL_FUNC)&_arrow_Table__column, 2}, - {"_arrow_Table__field", (DL_FUNC)&_arrow_Table__field, 2}, - {"_arrow_Table__columns", (DL_FUNC)&_arrow_Table__columns, 1}, - {"_arrow_Table__ColumnNames", (DL_FUNC)&_arrow_Table__ColumnNames, 1}, - {"_arrow_Table__Slice1", (DL_FUNC)&_arrow_Table__Slice1, 2}, - {"_arrow_Table__Slice2", (DL_FUNC)&_arrow_Table__Slice2, 3}, - {"_arrow_Table__Equals", (DL_FUNC)&_arrow_Table__Equals, 3}, - {"_arrow_Table__GetColumnByName", (DL_FUNC)&_arrow_Table__GetColumnByName, 2}, - {"_arrow_Table__select", (DL_FUNC)&_arrow_Table__select, 2}, - {"_arrow_Table__from_dots", (DL_FUNC)&_arrow_Table__from_dots, 2}, - {"_arrow_GetCpuThreadPoolCapacity", (DL_FUNC)&_arrow_GetCpuThreadPoolCapacity, 0}, - {"_arrow_SetCpuThreadPoolCapacity", (DL_FUNC)&_arrow_SetCpuThreadPoolCapacity, 1}, - {NULL, NULL, 0}}; - -RcppExport void R_init_arrow(DllInfo* dll) { + { "_arrow_available", (DL_FUNC)& _arrow_available, 0 }, + { "_arrow_Array__Slice1", (DL_FUNC) &_arrow_Array__Slice1, 2}, + { "_arrow_Array__Slice2", (DL_FUNC) &_arrow_Array__Slice2, 3}, + { "_arrow_Array__IsNull", (DL_FUNC) &_arrow_Array__IsNull, 2}, + { "_arrow_Array__IsValid", (DL_FUNC) &_arrow_Array__IsValid, 2}, + { "_arrow_Array__length", (DL_FUNC) &_arrow_Array__length, 1}, + { "_arrow_Array__offset", (DL_FUNC) &_arrow_Array__offset, 1}, + { "_arrow_Array__null_count", (DL_FUNC) &_arrow_Array__null_count, 1}, + { "_arrow_Array__type", (DL_FUNC) &_arrow_Array__type, 1}, + { "_arrow_Array__ToString", (DL_FUNC) &_arrow_Array__ToString, 1}, + { "_arrow_Array__type_id", (DL_FUNC) &_arrow_Array__type_id, 1}, + { "_arrow_Array__Equals", (DL_FUNC) &_arrow_Array__Equals, 2}, + { "_arrow_Array__ApproxEquals", (DL_FUNC) &_arrow_Array__ApproxEquals, 2}, + { "_arrow_Array__data", (DL_FUNC) &_arrow_Array__data, 1}, + { "_arrow_Array__RangeEquals", (DL_FUNC) &_arrow_Array__RangeEquals, 5}, + { "_arrow_Array__View", (DL_FUNC) &_arrow_Array__View, 2}, + { "_arrow_Array__Mask", (DL_FUNC) &_arrow_Array__Mask, 1}, + { "_arrow_Array__Validate", (DL_FUNC) &_arrow_Array__Validate, 1}, + { "_arrow_DictionaryArray__indices", (DL_FUNC) &_arrow_DictionaryArray__indices, 1}, + { "_arrow_DictionaryArray__dictionary", (DL_FUNC) &_arrow_DictionaryArray__dictionary, 1}, + { "_arrow_StructArray__field", (DL_FUNC) &_arrow_StructArray__field, 2}, + { "_arrow_StructArray__GetFieldByName", (DL_FUNC) &_arrow_StructArray__GetFieldByName, 2}, + { "_arrow_StructArray__Flatten", (DL_FUNC) &_arrow_StructArray__Flatten, 1}, + { "_arrow_ListArray__value_type", (DL_FUNC) &_arrow_ListArray__value_type, 1}, + { "_arrow_ListArray__values", (DL_FUNC) &_arrow_ListArray__values, 1}, + { "_arrow_ListArray__value_length", (DL_FUNC) &_arrow_ListArray__value_length, 2}, + { "_arrow_ListArray__value_offset", (DL_FUNC) &_arrow_ListArray__value_offset, 2}, + { "_arrow_ListArray__raw_value_offsets", (DL_FUNC) &_arrow_ListArray__raw_value_offsets, 1}, + { "_arrow_Array__infer_type", (DL_FUNC) &_arrow_Array__infer_type, 1}, + { "_arrow_Array__from_vector", (DL_FUNC) &_arrow_Array__from_vector, 2}, + { "_arrow_ChunkedArray__from_list", (DL_FUNC) &_arrow_ChunkedArray__from_list, 2}, + { "_arrow_DictionaryArray__FromArrays", (DL_FUNC) &_arrow_DictionaryArray__FromArrays, 3}, + { "_arrow_Array__as_vector", (DL_FUNC) &_arrow_Array__as_vector, 1}, + { "_arrow_ChunkedArray__as_vector", (DL_FUNC) &_arrow_ChunkedArray__as_vector, 1}, + { "_arrow_RecordBatch__to_dataframe", (DL_FUNC) &_arrow_RecordBatch__to_dataframe, 2}, + { "_arrow_Table__to_dataframe", (DL_FUNC) &_arrow_Table__to_dataframe, 2}, + { "_arrow_ArrayData__get_type", (DL_FUNC) &_arrow_ArrayData__get_type, 1}, + { "_arrow_ArrayData__get_length", (DL_FUNC) &_arrow_ArrayData__get_length, 1}, + { "_arrow_ArrayData__get_null_count", (DL_FUNC) &_arrow_ArrayData__get_null_count, 1}, + { "_arrow_ArrayData__get_offset", (DL_FUNC) &_arrow_ArrayData__get_offset, 1}, + { "_arrow_ArrayData__buffers", (DL_FUNC) &_arrow_ArrayData__buffers, 1}, + { "_arrow_Buffer__is_mutable", (DL_FUNC) &_arrow_Buffer__is_mutable, 1}, + { "_arrow_Buffer__ZeroPadding", (DL_FUNC) &_arrow_Buffer__ZeroPadding, 1}, + { "_arrow_Buffer__capacity", (DL_FUNC) &_arrow_Buffer__capacity, 1}, + { "_arrow_Buffer__size", (DL_FUNC) &_arrow_Buffer__size, 1}, + { "_arrow_r___RBuffer__initialize", (DL_FUNC) &_arrow_r___RBuffer__initialize, 1}, + { "_arrow_Buffer__data", (DL_FUNC) &_arrow_Buffer__data, 1}, + { "_arrow_Buffer__Equals", (DL_FUNC) &_arrow_Buffer__Equals, 2}, + { "_arrow_ChunkedArray__length", (DL_FUNC) &_arrow_ChunkedArray__length, 1}, + { "_arrow_ChunkedArray__null_count", (DL_FUNC) &_arrow_ChunkedArray__null_count, 1}, + { "_arrow_ChunkedArray__num_chunks", (DL_FUNC) &_arrow_ChunkedArray__num_chunks, 1}, + { "_arrow_ChunkedArray__chunk", (DL_FUNC) &_arrow_ChunkedArray__chunk, 2}, + { "_arrow_ChunkedArray__chunks", (DL_FUNC) &_arrow_ChunkedArray__chunks, 1}, + { "_arrow_ChunkedArray__type", (DL_FUNC) &_arrow_ChunkedArray__type, 1}, + { "_arrow_ChunkedArray__Slice1", (DL_FUNC) &_arrow_ChunkedArray__Slice1, 2}, + { "_arrow_ChunkedArray__Slice2", (DL_FUNC) &_arrow_ChunkedArray__Slice2, 3}, + { "_arrow_ChunkedArray__View", (DL_FUNC) &_arrow_ChunkedArray__View, 2}, + { "_arrow_ChunkedArray__Validate", (DL_FUNC) &_arrow_ChunkedArray__Validate, 1}, + { "_arrow_ChunkedArray__Equals", (DL_FUNC) &_arrow_ChunkedArray__Equals, 2}, + { "_arrow_util___Codec__Create", (DL_FUNC) &_arrow_util___Codec__Create, 2}, + { "_arrow_util___Codec__name", (DL_FUNC) &_arrow_util___Codec__name, 1}, + { "_arrow_util___Codec__IsAvailable", (DL_FUNC) &_arrow_util___Codec__IsAvailable, 1}, + { "_arrow_io___CompressedOutputStream__Make", (DL_FUNC) &_arrow_io___CompressedOutputStream__Make, 2}, + { "_arrow_io___CompressedInputStream__Make", (DL_FUNC) &_arrow_io___CompressedInputStream__Make, 2}, + { "_arrow_compute___CastOptions__initialize", (DL_FUNC) &_arrow_compute___CastOptions__initialize, 3}, + { "_arrow_Array__cast", (DL_FUNC) &_arrow_Array__cast, 3}, + { "_arrow_ChunkedArray__cast", (DL_FUNC) &_arrow_ChunkedArray__cast, 3}, + { "_arrow_RecordBatch__cast", (DL_FUNC) &_arrow_RecordBatch__cast, 3}, + { "_arrow_Table__cast", (DL_FUNC) &_arrow_Table__cast, 3}, + { "_arrow_Array__Take", (DL_FUNC) &_arrow_Array__Take, 2}, + { "_arrow_Array__TakeChunked", (DL_FUNC) &_arrow_Array__TakeChunked, 2}, + { "_arrow_RecordBatch__Take", (DL_FUNC) &_arrow_RecordBatch__Take, 2}, + { "_arrow_ChunkedArray__Take", (DL_FUNC) &_arrow_ChunkedArray__Take, 2}, + { "_arrow_ChunkedArray__TakeChunked", (DL_FUNC) &_arrow_ChunkedArray__TakeChunked, 2}, + { "_arrow_Table__Take", (DL_FUNC) &_arrow_Table__Take, 2}, + { "_arrow_Table__TakeChunked", (DL_FUNC) &_arrow_Table__TakeChunked, 2}, + { "_arrow_Array__Filter", (DL_FUNC) &_arrow_Array__Filter, 2}, + { "_arrow_RecordBatch__Filter", (DL_FUNC) &_arrow_RecordBatch__Filter, 2}, + { "_arrow_ChunkedArray__Filter", (DL_FUNC) &_arrow_ChunkedArray__Filter, 2}, + { "_arrow_ChunkedArray__FilterChunked", (DL_FUNC) &_arrow_ChunkedArray__FilterChunked, 2}, + { "_arrow_Table__Filter", (DL_FUNC) &_arrow_Table__Filter, 2}, + { "_arrow_Table__FilterChunked", (DL_FUNC) &_arrow_Table__FilterChunked, 2}, + { "_arrow_csv___ReadOptions__initialize", (DL_FUNC) &_arrow_csv___ReadOptions__initialize, 1}, + { "_arrow_csv___ParseOptions__initialize", (DL_FUNC) &_arrow_csv___ParseOptions__initialize, 1}, + { "_arrow_csv___ConvertOptions__initialize", (DL_FUNC) &_arrow_csv___ConvertOptions__initialize, 1}, + { "_arrow_csv___TableReader__Make", (DL_FUNC) &_arrow_csv___TableReader__Make, 4}, + { "_arrow_csv___TableReader__Read", (DL_FUNC) &_arrow_csv___TableReader__Read, 1}, + { "_arrow_dataset___FSSFactory__Make2", (DL_FUNC) &_arrow_dataset___FSSFactory__Make2, 4}, + { "_arrow_dataset___FSSFactory__Make1", (DL_FUNC) &_arrow_dataset___FSSFactory__Make1, 3}, + { "_arrow_dataset___FSSFactory__Make3", (DL_FUNC) &_arrow_dataset___FSSFactory__Make3, 4}, + { "_arrow_dataset___FileFormat__type_name", (DL_FUNC) &_arrow_dataset___FileFormat__type_name, 1}, + { "_arrow_dataset___ParquetFileFormat__Make", (DL_FUNC) &_arrow_dataset___ParquetFileFormat__Make, 1}, + { "_arrow_dataset___IpcFileFormat__Make", (DL_FUNC) &_arrow_dataset___IpcFileFormat__Make, 1}, + { "_arrow_dataset___SFactory__Finish1", (DL_FUNC) &_arrow_dataset___SFactory__Finish1, 1}, + { "_arrow_dataset___SFactory__Finish2", (DL_FUNC) &_arrow_dataset___SFactory__Finish2, 2}, + { "_arrow_dataset___SFactory__Inspect", (DL_FUNC) &_arrow_dataset___SFactory__Inspect, 1}, + { "_arrow_dataset___Source__schema", (DL_FUNC) &_arrow_dataset___Source__schema, 1}, + { "_arrow_dataset___Source__type_name", (DL_FUNC) &_arrow_dataset___Source__type_name, 1}, + { "_arrow_dataset___FSSource__format", (DL_FUNC) &_arrow_dataset___FSSource__format, 1}, + { "_arrow_dataset___FSSource__files", (DL_FUNC) &_arrow_dataset___FSSource__files, 1}, + { "_arrow_dataset___DFactory__Make", (DL_FUNC) &_arrow_dataset___DFactory__Make, 1}, + { "_arrow_dataset___DFactory__Inspect", (DL_FUNC) &_arrow_dataset___DFactory__Inspect, 1}, + { "_arrow_dataset___DFactory__Finish1", (DL_FUNC) &_arrow_dataset___DFactory__Finish1, 1}, + { "_arrow_dataset___DFactory__Finish2", (DL_FUNC) &_arrow_dataset___DFactory__Finish2, 2}, + { "_arrow_dataset___DirectoryPartitioning", (DL_FUNC) &_arrow_dataset___DirectoryPartitioning, 1}, + { "_arrow_dataset___DirectoryPartitioning__MakeFactory", (DL_FUNC) &_arrow_dataset___DirectoryPartitioning__MakeFactory, 1}, + { "_arrow_dataset___HivePartitioning", (DL_FUNC) &_arrow_dataset___HivePartitioning, 1}, + { "_arrow_dataset___HivePartitioning__MakeFactory", (DL_FUNC) &_arrow_dataset___HivePartitioning__MakeFactory, 0}, + { "_arrow_dataset___Dataset__create", (DL_FUNC) &_arrow_dataset___Dataset__create, 2}, + { "_arrow_dataset___Dataset__schema", (DL_FUNC) &_arrow_dataset___Dataset__schema, 1}, + { "_arrow_dataset___Dataset__sources", (DL_FUNC) &_arrow_dataset___Dataset__sources, 1}, + { "_arrow_dataset___Dataset__NewScan", (DL_FUNC) &_arrow_dataset___Dataset__NewScan, 1}, + { "_arrow_dataset___ScannerBuilder__Project", (DL_FUNC) &_arrow_dataset___ScannerBuilder__Project, 2}, + { "_arrow_dataset___ScannerBuilder__Filter", (DL_FUNC) &_arrow_dataset___ScannerBuilder__Filter, 2}, + { "_arrow_dataset___ScannerBuilder__UseThreads", (DL_FUNC) &_arrow_dataset___ScannerBuilder__UseThreads, 2}, + { "_arrow_dataset___ScannerBuilder__BatchSize", (DL_FUNC) &_arrow_dataset___ScannerBuilder__BatchSize, 2}, + { "_arrow_dataset___ScannerBuilder__schema", (DL_FUNC) &_arrow_dataset___ScannerBuilder__schema, 1}, + { "_arrow_dataset___ScannerBuilder__Finish", (DL_FUNC) &_arrow_dataset___ScannerBuilder__Finish, 1}, + { "_arrow_dataset___Scanner__ToTable", (DL_FUNC) &_arrow_dataset___Scanner__ToTable, 1}, + { "_arrow_shared_ptr_is_null", (DL_FUNC) &_arrow_shared_ptr_is_null, 1}, + { "_arrow_unique_ptr_is_null", (DL_FUNC) &_arrow_unique_ptr_is_null, 1}, + { "_arrow_Int8__initialize", (DL_FUNC) &_arrow_Int8__initialize, 0}, + { "_arrow_Int16__initialize", (DL_FUNC) &_arrow_Int16__initialize, 0}, + { "_arrow_Int32__initialize", (DL_FUNC) &_arrow_Int32__initialize, 0}, + { "_arrow_Int64__initialize", (DL_FUNC) &_arrow_Int64__initialize, 0}, + { "_arrow_UInt8__initialize", (DL_FUNC) &_arrow_UInt8__initialize, 0}, + { "_arrow_UInt16__initialize", (DL_FUNC) &_arrow_UInt16__initialize, 0}, + { "_arrow_UInt32__initialize", (DL_FUNC) &_arrow_UInt32__initialize, 0}, + { "_arrow_UInt64__initialize", (DL_FUNC) &_arrow_UInt64__initialize, 0}, + { "_arrow_Float16__initialize", (DL_FUNC) &_arrow_Float16__initialize, 0}, + { "_arrow_Float32__initialize", (DL_FUNC) &_arrow_Float32__initialize, 0}, + { "_arrow_Float64__initialize", (DL_FUNC) &_arrow_Float64__initialize, 0}, + { "_arrow_Boolean__initialize", (DL_FUNC) &_arrow_Boolean__initialize, 0}, + { "_arrow_Utf8__initialize", (DL_FUNC) &_arrow_Utf8__initialize, 0}, + { "_arrow_Date32__initialize", (DL_FUNC) &_arrow_Date32__initialize, 0}, + { "_arrow_Date64__initialize", (DL_FUNC) &_arrow_Date64__initialize, 0}, + { "_arrow_Null__initialize", (DL_FUNC) &_arrow_Null__initialize, 0}, + { "_arrow_Decimal128Type__initialize", (DL_FUNC) &_arrow_Decimal128Type__initialize, 2}, + { "_arrow_FixedSizeBinary__initialize", (DL_FUNC) &_arrow_FixedSizeBinary__initialize, 1}, + { "_arrow_Timestamp__initialize1", (DL_FUNC) &_arrow_Timestamp__initialize1, 1}, + { "_arrow_Timestamp__initialize2", (DL_FUNC) &_arrow_Timestamp__initialize2, 2}, + { "_arrow_Time32__initialize", (DL_FUNC) &_arrow_Time32__initialize, 1}, + { "_arrow_Time64__initialize", (DL_FUNC) &_arrow_Time64__initialize, 1}, + { "_arrow_list__", (DL_FUNC) &_arrow_list__, 1}, + { "_arrow_struct_", (DL_FUNC) &_arrow_struct_, 1}, + { "_arrow_DataType__ToString", (DL_FUNC) &_arrow_DataType__ToString, 1}, + { "_arrow_DataType__name", (DL_FUNC) &_arrow_DataType__name, 1}, + { "_arrow_DataType__Equals", (DL_FUNC) &_arrow_DataType__Equals, 2}, + { "_arrow_DataType__num_children", (DL_FUNC) &_arrow_DataType__num_children, 1}, + { "_arrow_DataType__children_pointer", (DL_FUNC) &_arrow_DataType__children_pointer, 1}, + { "_arrow_DataType__id", (DL_FUNC) &_arrow_DataType__id, 1}, + { "_arrow_ListType__ToString", (DL_FUNC) &_arrow_ListType__ToString, 1}, + { "_arrow_FixedWidthType__bit_width", (DL_FUNC) &_arrow_FixedWidthType__bit_width, 1}, + { "_arrow_DateType__unit", (DL_FUNC) &_arrow_DateType__unit, 1}, + { "_arrow_TimeType__unit", (DL_FUNC) &_arrow_TimeType__unit, 1}, + { "_arrow_DecimalType__precision", (DL_FUNC) &_arrow_DecimalType__precision, 1}, + { "_arrow_DecimalType__scale", (DL_FUNC) &_arrow_DecimalType__scale, 1}, + { "_arrow_TimestampType__timezone", (DL_FUNC) &_arrow_TimestampType__timezone, 1}, + { "_arrow_TimestampType__unit", (DL_FUNC) &_arrow_TimestampType__unit, 1}, + { "_arrow_DictionaryType__initialize", (DL_FUNC) &_arrow_DictionaryType__initialize, 3}, + { "_arrow_DictionaryType__index_type", (DL_FUNC) &_arrow_DictionaryType__index_type, 1}, + { "_arrow_DictionaryType__value_type", (DL_FUNC) &_arrow_DictionaryType__value_type, 1}, + { "_arrow_DictionaryType__name", (DL_FUNC) &_arrow_DictionaryType__name, 1}, + { "_arrow_DictionaryType__ordered", (DL_FUNC) &_arrow_DictionaryType__ordered, 1}, + { "_arrow_StructType__GetFieldByName", (DL_FUNC) &_arrow_StructType__GetFieldByName, 2}, + { "_arrow_StructType__GetFieldIndex", (DL_FUNC) &_arrow_StructType__GetFieldIndex, 2}, + { "_arrow_ListType__value_field", (DL_FUNC) &_arrow_ListType__value_field, 1}, + { "_arrow_ListType__value_type", (DL_FUNC) &_arrow_ListType__value_type, 1}, + { "_arrow_dataset___expr__field_ref", (DL_FUNC) &_arrow_dataset___expr__field_ref, 1}, + { "_arrow_dataset___expr__equal", (DL_FUNC) &_arrow_dataset___expr__equal, 2}, + { "_arrow_dataset___expr__not_equal", (DL_FUNC) &_arrow_dataset___expr__not_equal, 2}, + { "_arrow_dataset___expr__greater", (DL_FUNC) &_arrow_dataset___expr__greater, 2}, + { "_arrow_dataset___expr__greater_equal", (DL_FUNC) &_arrow_dataset___expr__greater_equal, 2}, + { "_arrow_dataset___expr__less", (DL_FUNC) &_arrow_dataset___expr__less, 2}, + { "_arrow_dataset___expr__less_equal", (DL_FUNC) &_arrow_dataset___expr__less_equal, 2}, + { "_arrow_dataset___expr__in", (DL_FUNC) &_arrow_dataset___expr__in, 2}, + { "_arrow_dataset___expr__and", (DL_FUNC) &_arrow_dataset___expr__and, 2}, + { "_arrow_dataset___expr__or", (DL_FUNC) &_arrow_dataset___expr__or, 2}, + { "_arrow_dataset___expr__not", (DL_FUNC) &_arrow_dataset___expr__not, 1}, + { "_arrow_dataset___expr__is_valid", (DL_FUNC) &_arrow_dataset___expr__is_valid, 1}, + { "_arrow_dataset___expr__scalar", (DL_FUNC) &_arrow_dataset___expr__scalar, 1}, + { "_arrow_dataset___expr__ToString", (DL_FUNC) &_arrow_dataset___expr__ToString, 1}, + { "_arrow_ipc___feather___TableWriter__SetDescription", (DL_FUNC) &_arrow_ipc___feather___TableWriter__SetDescription, 2}, + { "_arrow_ipc___feather___TableWriter__SetNumRows", (DL_FUNC) &_arrow_ipc___feather___TableWriter__SetNumRows, 2}, + { "_arrow_ipc___feather___TableWriter__Append", (DL_FUNC) &_arrow_ipc___feather___TableWriter__Append, 3}, + { "_arrow_ipc___feather___TableWriter__Finalize", (DL_FUNC) &_arrow_ipc___feather___TableWriter__Finalize, 1}, + { "_arrow_ipc___feather___TableWriter__Open", (DL_FUNC) &_arrow_ipc___feather___TableWriter__Open, 1}, + { "_arrow_ipc___TableWriter__RecordBatch__WriteFeather", (DL_FUNC) &_arrow_ipc___TableWriter__RecordBatch__WriteFeather, 2}, + { "_arrow_ipc___feather___TableReader__GetDescription", (DL_FUNC) &_arrow_ipc___feather___TableReader__GetDescription, 1}, + { "_arrow_ipc___feather___TableReader__HasDescription", (DL_FUNC) &_arrow_ipc___feather___TableReader__HasDescription, 1}, + { "_arrow_ipc___feather___TableReader__version", (DL_FUNC) &_arrow_ipc___feather___TableReader__version, 1}, + { "_arrow_ipc___feather___TableReader__num_rows", (DL_FUNC) &_arrow_ipc___feather___TableReader__num_rows, 1}, + { "_arrow_ipc___feather___TableReader__num_columns", (DL_FUNC) &_arrow_ipc___feather___TableReader__num_columns, 1}, + { "_arrow_ipc___feather___TableReader__GetColumnName", (DL_FUNC) &_arrow_ipc___feather___TableReader__GetColumnName, 2}, + { "_arrow_ipc___feather___TableReader__GetColumn", (DL_FUNC) &_arrow_ipc___feather___TableReader__GetColumn, 2}, + { "_arrow_ipc___feather___TableReader__Read", (DL_FUNC) &_arrow_ipc___feather___TableReader__Read, 2}, + { "_arrow_ipc___feather___TableReader__Open", (DL_FUNC) &_arrow_ipc___feather___TableReader__Open, 1}, + { "_arrow_ipc___feather___TableReader__column_names", (DL_FUNC) &_arrow_ipc___feather___TableReader__column_names, 1}, + { "_arrow_Field__initialize", (DL_FUNC) &_arrow_Field__initialize, 3}, + { "_arrow_Field__ToString", (DL_FUNC) &_arrow_Field__ToString, 1}, + { "_arrow_Field__name", (DL_FUNC) &_arrow_Field__name, 1}, + { "_arrow_Field__Equals", (DL_FUNC) &_arrow_Field__Equals, 2}, + { "_arrow_Field__nullable", (DL_FUNC) &_arrow_Field__nullable, 1}, + { "_arrow_Field__type", (DL_FUNC) &_arrow_Field__type, 1}, + { "_arrow_fs___FileStats__type", (DL_FUNC) &_arrow_fs___FileStats__type, 1}, + { "_arrow_fs___FileStats__set_type", (DL_FUNC) &_arrow_fs___FileStats__set_type, 2}, + { "_arrow_fs___FileStats__path", (DL_FUNC) &_arrow_fs___FileStats__path, 1}, + { "_arrow_fs___FileStats__set_path", (DL_FUNC) &_arrow_fs___FileStats__set_path, 2}, + { "_arrow_fs___FileStats__size", (DL_FUNC) &_arrow_fs___FileStats__size, 1}, + { "_arrow_fs___FileStats__set_size", (DL_FUNC) &_arrow_fs___FileStats__set_size, 2}, + { "_arrow_fs___FileStats__base_name", (DL_FUNC) &_arrow_fs___FileStats__base_name, 1}, + { "_arrow_fs___FileStats__extension", (DL_FUNC) &_arrow_fs___FileStats__extension, 1}, + { "_arrow_fs___FileStats__mtime", (DL_FUNC) &_arrow_fs___FileStats__mtime, 1}, + { "_arrow_fs___FileStats__set_mtime", (DL_FUNC) &_arrow_fs___FileStats__set_mtime, 2}, + { "_arrow_fs___FileSelector__base_dir", (DL_FUNC) &_arrow_fs___FileSelector__base_dir, 1}, + { "_arrow_fs___FileSelector__allow_non_existent", (DL_FUNC) &_arrow_fs___FileSelector__allow_non_existent, 1}, + { "_arrow_fs___FileSelector__recursive", (DL_FUNC) &_arrow_fs___FileSelector__recursive, 1}, + { "_arrow_fs___FileSelector__create", (DL_FUNC) &_arrow_fs___FileSelector__create, 3}, + { "_arrow_fs___FileSystem__GetTargetStats_Paths", (DL_FUNC) &_arrow_fs___FileSystem__GetTargetStats_Paths, 2}, + { "_arrow_fs___FileSystem__GetTargetStats_FileSelector", (DL_FUNC) &_arrow_fs___FileSystem__GetTargetStats_FileSelector, 2}, + { "_arrow_fs___FileSystem__CreateDir", (DL_FUNC) &_arrow_fs___FileSystem__CreateDir, 3}, + { "_arrow_fs___FileSystem__DeleteDir", (DL_FUNC) &_arrow_fs___FileSystem__DeleteDir, 2}, + { "_arrow_fs___FileSystem__DeleteDirContents", (DL_FUNC) &_arrow_fs___FileSystem__DeleteDirContents, 2}, + { "_arrow_fs___FileSystem__DeleteFile", (DL_FUNC) &_arrow_fs___FileSystem__DeleteFile, 2}, + { "_arrow_fs___FileSystem__DeleteFiles", (DL_FUNC) &_arrow_fs___FileSystem__DeleteFiles, 2}, + { "_arrow_fs___FileSystem__Move", (DL_FUNC) &_arrow_fs___FileSystem__Move, 3}, + { "_arrow_fs___FileSystem__CopyFile", (DL_FUNC) &_arrow_fs___FileSystem__CopyFile, 3}, + { "_arrow_fs___FileSystem__OpenInputStream", (DL_FUNC) &_arrow_fs___FileSystem__OpenInputStream, 2}, + { "_arrow_fs___FileSystem__OpenInputFile", (DL_FUNC) &_arrow_fs___FileSystem__OpenInputFile, 2}, + { "_arrow_fs___FileSystem__OpenOutputStream", (DL_FUNC) &_arrow_fs___FileSystem__OpenOutputStream, 2}, + { "_arrow_fs___FileSystem__OpenAppendStream", (DL_FUNC) &_arrow_fs___FileSystem__OpenAppendStream, 2}, + { "_arrow_fs___LocalFileSystem__create", (DL_FUNC) &_arrow_fs___LocalFileSystem__create, 0}, + { "_arrow_fs___SubTreeFileSystem__create", (DL_FUNC) &_arrow_fs___SubTreeFileSystem__create, 2}, + { "_arrow_io___Readable__Read", (DL_FUNC) &_arrow_io___Readable__Read, 2}, + { "_arrow_io___InputStream__Close", (DL_FUNC) &_arrow_io___InputStream__Close, 1}, + { "_arrow_io___OutputStream__Close", (DL_FUNC) &_arrow_io___OutputStream__Close, 1}, + { "_arrow_io___RandomAccessFile__GetSize", (DL_FUNC) &_arrow_io___RandomAccessFile__GetSize, 1}, + { "_arrow_io___RandomAccessFile__supports_zero_copy", (DL_FUNC) &_arrow_io___RandomAccessFile__supports_zero_copy, 1}, + { "_arrow_io___RandomAccessFile__Seek", (DL_FUNC) &_arrow_io___RandomAccessFile__Seek, 2}, + { "_arrow_io___RandomAccessFile__Tell", (DL_FUNC) &_arrow_io___RandomAccessFile__Tell, 1}, + { "_arrow_io___RandomAccessFile__Read0", (DL_FUNC) &_arrow_io___RandomAccessFile__Read0, 1}, + { "_arrow_io___RandomAccessFile__ReadAt", (DL_FUNC) &_arrow_io___RandomAccessFile__ReadAt, 3}, + { "_arrow_io___MemoryMappedFile__Create", (DL_FUNC) &_arrow_io___MemoryMappedFile__Create, 2}, + { "_arrow_io___MemoryMappedFile__Open", (DL_FUNC) &_arrow_io___MemoryMappedFile__Open, 2}, + { "_arrow_io___MemoryMappedFile__Resize", (DL_FUNC) &_arrow_io___MemoryMappedFile__Resize, 2}, + { "_arrow_io___ReadableFile__Open", (DL_FUNC) &_arrow_io___ReadableFile__Open, 1}, + { "_arrow_io___BufferReader__initialize", (DL_FUNC) &_arrow_io___BufferReader__initialize, 1}, + { "_arrow_io___Writable__write", (DL_FUNC) &_arrow_io___Writable__write, 2}, + { "_arrow_io___OutputStream__Tell", (DL_FUNC) &_arrow_io___OutputStream__Tell, 1}, + { "_arrow_io___FileOutputStream__Open", (DL_FUNC) &_arrow_io___FileOutputStream__Open, 1}, + { "_arrow_io___BufferOutputStream__Create", (DL_FUNC) &_arrow_io___BufferOutputStream__Create, 1}, + { "_arrow_io___BufferOutputStream__capacity", (DL_FUNC) &_arrow_io___BufferOutputStream__capacity, 1}, + { "_arrow_io___BufferOutputStream__Finish", (DL_FUNC) &_arrow_io___BufferOutputStream__Finish, 1}, + { "_arrow_io___BufferOutputStream__Tell", (DL_FUNC) &_arrow_io___BufferOutputStream__Tell, 1}, + { "_arrow_io___BufferOutputStream__Write", (DL_FUNC) &_arrow_io___BufferOutputStream__Write, 2}, + { "_arrow_io___MockOutputStream__initialize", (DL_FUNC) &_arrow_io___MockOutputStream__initialize, 0}, + { "_arrow_io___MockOutputStream__GetExtentBytesWritten", (DL_FUNC) &_arrow_io___MockOutputStream__GetExtentBytesWritten, 1}, + { "_arrow_io___FixedSizeBufferWriter__initialize", (DL_FUNC) &_arrow_io___FixedSizeBufferWriter__initialize, 1}, + { "_arrow_json___ReadOptions__initialize", (DL_FUNC) &_arrow_json___ReadOptions__initialize, 1}, + { "_arrow_json___ParseOptions__initialize", (DL_FUNC) &_arrow_json___ParseOptions__initialize, 1}, + { "_arrow_json___TableReader__Make", (DL_FUNC) &_arrow_json___TableReader__Make, 3}, + { "_arrow_json___TableReader__Read", (DL_FUNC) &_arrow_json___TableReader__Read, 1}, + { "_arrow_MemoryPool__default", (DL_FUNC) &_arrow_MemoryPool__default, 0}, + { "_arrow_MemoryPool__bytes_allocated", (DL_FUNC) &_arrow_MemoryPool__bytes_allocated, 1}, + { "_arrow_MemoryPool__max_memory", (DL_FUNC) &_arrow_MemoryPool__max_memory, 1}, + { "_arrow_ipc___Message__body_length", (DL_FUNC) &_arrow_ipc___Message__body_length, 1}, + { "_arrow_ipc___Message__metadata", (DL_FUNC) &_arrow_ipc___Message__metadata, 1}, + { "_arrow_ipc___Message__body", (DL_FUNC) &_arrow_ipc___Message__body, 1}, + { "_arrow_ipc___Message__Verify", (DL_FUNC) &_arrow_ipc___Message__Verify, 1}, + { "_arrow_ipc___Message__type", (DL_FUNC) &_arrow_ipc___Message__type, 1}, + { "_arrow_ipc___Message__Equals", (DL_FUNC) &_arrow_ipc___Message__Equals, 2}, + { "_arrow_ipc___ReadRecordBatch__Message__Schema", (DL_FUNC) &_arrow_ipc___ReadRecordBatch__Message__Schema, 2}, + { "_arrow_ipc___ReadSchema_InputStream", (DL_FUNC) &_arrow_ipc___ReadSchema_InputStream, 1}, + { "_arrow_ipc___ReadSchema_Message", (DL_FUNC) &_arrow_ipc___ReadSchema_Message, 1}, + { "_arrow_ipc___MessageReader__Open", (DL_FUNC) &_arrow_ipc___MessageReader__Open, 1}, + { "_arrow_ipc___MessageReader__ReadNextMessage", (DL_FUNC) &_arrow_ipc___MessageReader__ReadNextMessage, 1}, + { "_arrow_ipc___ReadMessage", (DL_FUNC) &_arrow_ipc___ReadMessage, 1}, + { "_arrow_parquet___arrow___ArrowReaderProperties__Make", (DL_FUNC) &_arrow_parquet___arrow___ArrowReaderProperties__Make, 1}, + { "_arrow_parquet___arrow___ArrowReaderProperties__set_use_threads", (DL_FUNC) &_arrow_parquet___arrow___ArrowReaderProperties__set_use_threads, 2}, + { "_arrow_parquet___arrow___ArrowReaderProperties__get_use_threads", (DL_FUNC) &_arrow_parquet___arrow___ArrowReaderProperties__get_use_threads, 2}, + { "_arrow_parquet___arrow___ArrowReaderProperties__get_read_dictionary", (DL_FUNC) &_arrow_parquet___arrow___ArrowReaderProperties__get_read_dictionary, 2}, + { "_arrow_parquet___arrow___ArrowReaderProperties__set_read_dictionary", (DL_FUNC) &_arrow_parquet___arrow___ArrowReaderProperties__set_read_dictionary, 3}, + { "_arrow_parquet___arrow___FileReader__OpenFile", (DL_FUNC) &_arrow_parquet___arrow___FileReader__OpenFile, 2}, + { "_arrow_parquet___arrow___FileReader__ReadTable1", (DL_FUNC) &_arrow_parquet___arrow___FileReader__ReadTable1, 1}, + { "_arrow_parquet___arrow___FileReader__ReadTable2", (DL_FUNC) &_arrow_parquet___arrow___FileReader__ReadTable2, 2}, + { "_arrow_parquet___ArrowWriterProperties___Builder__create", (DL_FUNC) &_arrow_parquet___ArrowWriterProperties___Builder__create, 0}, + { "_arrow_parquet___ArrowWriterProperties___Builder__store_schema", (DL_FUNC) &_arrow_parquet___ArrowWriterProperties___Builder__store_schema, 1}, + { "_arrow_parquet___ArrowWriterProperties___Builder__enable_deprecated_int96_timestamps", (DL_FUNC) &_arrow_parquet___ArrowWriterProperties___Builder__enable_deprecated_int96_timestamps, 1}, + { "_arrow_parquet___ArrowWriterProperties___Builder__disable_deprecated_int96_timestamps", (DL_FUNC) &_arrow_parquet___ArrowWriterProperties___Builder__disable_deprecated_int96_timestamps, 1}, + { "_arrow_parquet___ArrowWriterProperties___Builder__coerce_timestamps", (DL_FUNC) &_arrow_parquet___ArrowWriterProperties___Builder__coerce_timestamps, 2}, + { "_arrow_parquet___ArrowWriterProperties___Builder__allow_truncated_timestamps", (DL_FUNC) &_arrow_parquet___ArrowWriterProperties___Builder__allow_truncated_timestamps, 1}, + { "_arrow_parquet___ArrowWriterProperties___Builder__disallow_truncated_timestamps", (DL_FUNC) &_arrow_parquet___ArrowWriterProperties___Builder__disallow_truncated_timestamps, 1}, + { "_arrow_parquet___ArrowWriterProperties___Builder__build", (DL_FUNC) &_arrow_parquet___ArrowWriterProperties___Builder__build, 1}, + { "_arrow_parquet___default_writer_properties", (DL_FUNC) &_arrow_parquet___default_writer_properties, 0}, + { "_arrow_parquet___WriterProperties___Builder__create", (DL_FUNC) &_arrow_parquet___WriterProperties___Builder__create, 0}, + { "_arrow_parquet___WriterProperties___Builder__version", (DL_FUNC) &_arrow_parquet___WriterProperties___Builder__version, 2}, + { "_arrow_parquet___ArrowWriterProperties___Builder__default_compression", (DL_FUNC) &_arrow_parquet___ArrowWriterProperties___Builder__default_compression, 2}, + { "_arrow_parquet___ArrowWriterProperties___Builder__set_compressions", (DL_FUNC) &_arrow_parquet___ArrowWriterProperties___Builder__set_compressions, 3}, + { "_arrow_parquet___ArrowWriterProperties___Builder__default_compression_level", (DL_FUNC) &_arrow_parquet___ArrowWriterProperties___Builder__default_compression_level, 2}, + { "_arrow_parquet___ArrowWriterProperties___Builder__set_compression_levels", (DL_FUNC) &_arrow_parquet___ArrowWriterProperties___Builder__set_compression_levels, 3}, + { "_arrow_parquet___ArrowWriterProperties___Builder__default_write_statistics", (DL_FUNC) &_arrow_parquet___ArrowWriterProperties___Builder__default_write_statistics, 2}, + { "_arrow_parquet___ArrowWriterProperties___Builder__default_use_dictionary", (DL_FUNC) &_arrow_parquet___ArrowWriterProperties___Builder__default_use_dictionary, 2}, + { "_arrow_parquet___ArrowWriterProperties___Builder__set_use_dictionary", (DL_FUNC) &_arrow_parquet___ArrowWriterProperties___Builder__set_use_dictionary, 3}, + { "_arrow_parquet___ArrowWriterProperties___Builder__set_write_statistics", (DL_FUNC) &_arrow_parquet___ArrowWriterProperties___Builder__set_write_statistics, 3}, + { "_arrow_parquet___ArrowWriterProperties___Builder__data_page_size", (DL_FUNC) &_arrow_parquet___ArrowWriterProperties___Builder__data_page_size, 2}, + { "_arrow_parquet___WriterProperties___Builder__build", (DL_FUNC) &_arrow_parquet___WriterProperties___Builder__build, 1}, + { "_arrow_parquet___arrow___ParquetFileWriter__Open", (DL_FUNC) &_arrow_parquet___arrow___ParquetFileWriter__Open, 4}, + { "_arrow_parquet___arrow___FileWriter__WriteTable", (DL_FUNC) &_arrow_parquet___arrow___FileWriter__WriteTable, 3}, + { "_arrow_parquet___arrow___FileWriter__Close", (DL_FUNC) &_arrow_parquet___arrow___FileWriter__Close, 1}, + { "_arrow_parquet___arrow___WriteTable", (DL_FUNC) &_arrow_parquet___arrow___WriteTable, 4}, + { "_arrow_parquet___arrow___FileReader__GetSchema", (DL_FUNC) &_arrow_parquet___arrow___FileReader__GetSchema, 1}, + { "_arrow_RecordBatch__num_columns", (DL_FUNC) &_arrow_RecordBatch__num_columns, 1}, + { "_arrow_RecordBatch__num_rows", (DL_FUNC) &_arrow_RecordBatch__num_rows, 1}, + { "_arrow_RecordBatch__schema", (DL_FUNC) &_arrow_RecordBatch__schema, 1}, + { "_arrow_RecordBatch__columns", (DL_FUNC) &_arrow_RecordBatch__columns, 1}, + { "_arrow_RecordBatch__column", (DL_FUNC) &_arrow_RecordBatch__column, 2}, + { "_arrow_RecordBatch__GetColumnByName", (DL_FUNC) &_arrow_RecordBatch__GetColumnByName, 2}, + { "_arrow_RecordBatch__select", (DL_FUNC) &_arrow_RecordBatch__select, 2}, + { "_arrow_RecordBatch__from_dataframe", (DL_FUNC) &_arrow_RecordBatch__from_dataframe, 1}, + { "_arrow_RecordBatch__Equals", (DL_FUNC) &_arrow_RecordBatch__Equals, 2}, + { "_arrow_RecordBatch__RemoveColumn", (DL_FUNC) &_arrow_RecordBatch__RemoveColumn, 2}, + { "_arrow_RecordBatch__column_name", (DL_FUNC) &_arrow_RecordBatch__column_name, 2}, + { "_arrow_RecordBatch__names", (DL_FUNC) &_arrow_RecordBatch__names, 1}, + { "_arrow_RecordBatch__Slice1", (DL_FUNC) &_arrow_RecordBatch__Slice1, 2}, + { "_arrow_RecordBatch__Slice2", (DL_FUNC) &_arrow_RecordBatch__Slice2, 3}, + { "_arrow_ipc___SerializeRecordBatch__Raw", (DL_FUNC) &_arrow_ipc___SerializeRecordBatch__Raw, 1}, + { "_arrow_ipc___ReadRecordBatch__InputStream__Schema", (DL_FUNC) &_arrow_ipc___ReadRecordBatch__InputStream__Schema, 2}, + { "_arrow_RecordBatch__from_arrays", (DL_FUNC) &_arrow_RecordBatch__from_arrays, 2}, + { "_arrow_RecordBatchReader__schema", (DL_FUNC) &_arrow_RecordBatchReader__schema, 1}, + { "_arrow_RecordBatchReader__ReadNext", (DL_FUNC) &_arrow_RecordBatchReader__ReadNext, 1}, + { "_arrow_ipc___RecordBatchStreamReader__Open", (DL_FUNC) &_arrow_ipc___RecordBatchStreamReader__Open, 1}, + { "_arrow_ipc___RecordBatchStreamReader__batches", (DL_FUNC) &_arrow_ipc___RecordBatchStreamReader__batches, 1}, + { "_arrow_ipc___RecordBatchFileReader__schema", (DL_FUNC) &_arrow_ipc___RecordBatchFileReader__schema, 1}, + { "_arrow_ipc___RecordBatchFileReader__num_record_batches", (DL_FUNC) &_arrow_ipc___RecordBatchFileReader__num_record_batches, 1}, + { "_arrow_ipc___RecordBatchFileReader__ReadRecordBatch", (DL_FUNC) &_arrow_ipc___RecordBatchFileReader__ReadRecordBatch, 2}, + { "_arrow_ipc___RecordBatchFileReader__Open", (DL_FUNC) &_arrow_ipc___RecordBatchFileReader__Open, 1}, + { "_arrow_Table__from_RecordBatchFileReader", (DL_FUNC) &_arrow_Table__from_RecordBatchFileReader, 1}, + { "_arrow_Table__from_RecordBatchStreamReader", (DL_FUNC) &_arrow_Table__from_RecordBatchStreamReader, 1}, + { "_arrow_ipc___RecordBatchFileReader__batches", (DL_FUNC) &_arrow_ipc___RecordBatchFileReader__batches, 1}, + { "_arrow_ipc___RecordBatchWriter__WriteRecordBatch", (DL_FUNC) &_arrow_ipc___RecordBatchWriter__WriteRecordBatch, 2}, + { "_arrow_ipc___RecordBatchWriter__WriteTable", (DL_FUNC) &_arrow_ipc___RecordBatchWriter__WriteTable, 2}, + { "_arrow_ipc___RecordBatchWriter__Close", (DL_FUNC) &_arrow_ipc___RecordBatchWriter__Close, 1}, + { "_arrow_ipc___RecordBatchFileWriter__Open", (DL_FUNC) &_arrow_ipc___RecordBatchFileWriter__Open, 3}, + { "_arrow_ipc___RecordBatchStreamWriter__Open", (DL_FUNC) &_arrow_ipc___RecordBatchStreamWriter__Open, 3}, + { "_arrow_schema_", (DL_FUNC) &_arrow_schema_, 1}, + { "_arrow_Schema__ToString", (DL_FUNC) &_arrow_Schema__ToString, 1}, + { "_arrow_Schema__num_fields", (DL_FUNC) &_arrow_Schema__num_fields, 1}, + { "_arrow_Schema__field", (DL_FUNC) &_arrow_Schema__field, 2}, + { "_arrow_Schema__GetFieldByName", (DL_FUNC) &_arrow_Schema__GetFieldByName, 2}, + { "_arrow_Schema__fields", (DL_FUNC) &_arrow_Schema__fields, 1}, + { "_arrow_Schema__field_names", (DL_FUNC) &_arrow_Schema__field_names, 1}, + { "_arrow_Schema__HasMetadata", (DL_FUNC) &_arrow_Schema__HasMetadata, 1}, + { "_arrow_Schema__metadata", (DL_FUNC) &_arrow_Schema__metadata, 1}, + { "_arrow_Schema__WithMetadata", (DL_FUNC) &_arrow_Schema__WithMetadata, 2}, + { "_arrow_Schema__serialize", (DL_FUNC) &_arrow_Schema__serialize, 1}, + { "_arrow_Schema__Equals", (DL_FUNC) &_arrow_Schema__Equals, 3}, + { "_arrow_Table__from_dataframe", (DL_FUNC) &_arrow_Table__from_dataframe, 1}, + { "_arrow_Table__num_columns", (DL_FUNC) &_arrow_Table__num_columns, 1}, + { "_arrow_Table__num_rows", (DL_FUNC) &_arrow_Table__num_rows, 1}, + { "_arrow_Table__schema", (DL_FUNC) &_arrow_Table__schema, 1}, + { "_arrow_Table__column", (DL_FUNC) &_arrow_Table__column, 2}, + { "_arrow_Table__field", (DL_FUNC) &_arrow_Table__field, 2}, + { "_arrow_Table__columns", (DL_FUNC) &_arrow_Table__columns, 1}, + { "_arrow_Table__ColumnNames", (DL_FUNC) &_arrow_Table__ColumnNames, 1}, + { "_arrow_Table__Slice1", (DL_FUNC) &_arrow_Table__Slice1, 2}, + { "_arrow_Table__Slice2", (DL_FUNC) &_arrow_Table__Slice2, 3}, + { "_arrow_Table__Equals", (DL_FUNC) &_arrow_Table__Equals, 3}, + { "_arrow_Table__GetColumnByName", (DL_FUNC) &_arrow_Table__GetColumnByName, 2}, + { "_arrow_Table__select", (DL_FUNC) &_arrow_Table__select, 2}, + { "_arrow_Table__from_dots", (DL_FUNC) &_arrow_Table__from_dots, 2}, + { "_arrow_GetCpuThreadPoolCapacity", (DL_FUNC) &_arrow_GetCpuThreadPoolCapacity, 0}, + { "_arrow_SetCpuThreadPoolCapacity", (DL_FUNC) &_arrow_SetCpuThreadPoolCapacity, 1}, + {NULL, NULL, 0} +}; + +RcppExport void R_init_arrow(DllInfo* dll){ R_registerRoutines(dll, NULL, CallEntries, NULL, NULL); R_useDynamicSymbols(dll, FALSE); } diff --git a/r/src/dataset.cpp b/r/src/dataset.cpp index a1e81c5cbaf54..7777f86bf722b 100644 --- a/r/src/dataset.cpp +++ b/r/src/dataset.cpp @@ -229,6 +229,12 @@ void dataset___ScannerBuilder__UseThreads(const std::shared_ptrUseThreads(threads)); } +// [[arrow::export]] +void dataset___ScannerBuilder__BatchSize(const std::shared_ptr& sb, + int64_t batch_size) { + STOP_IF_NOT_OK(sb->BatchSize(batch_size)); +} + // [[arrow::export]] std::shared_ptr dataset___ScannerBuilder__schema( const std::shared_ptr& sb) {