MCPcopy Create free account
hub / github.com/apache/arrow / _arrow_Table__SelectColumns

Function _arrow_Table__SelectColumns

r/src/arrowExports.cpp:5542–5548  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5540// table.cpp
5541std::shared_ptr<arrow::Table> Table__SelectColumns(const std::shared_ptr<arrow::Table>& table, const std::vector<int>& indices);
5542extern "C" SEXP _arrow_Table__SelectColumns(SEXP table_sexp, SEXP indices_sexp){
5543BEGIN_CPP11
5544 arrow::r::Input<const std::shared_ptr<arrow::Table>&>::type table(table_sexp);
5545 arrow::r::Input<const std::vector<int>&>::type indices(indices_sexp);
5546 return cpp11::as_sexp(Table__SelectColumns(table, indices));
5547END_CPP11
5548}
5549// table.cpp
5550bool all_record_batches(SEXP lst);
5551extern "C" SEXP _arrow_all_record_batches(SEXP lst_sexp){

Callers

nothing calls this directly

Calls 2

as_sexpFunction · 0.85
Table__SelectColumnsFunction · 0.85

Tested by

no test coverage detected