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

Function _arrow_Table__SelectColumns

r/src/arrowExports.cpp:5585–5591  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5583// table.cpp
5584std::shared_ptr<arrow::Table> Table__SelectColumns(const std::shared_ptr<arrow::Table>& table, const std::vector<int>& indices);
5585extern "C" SEXP _arrow_Table__SelectColumns(SEXP table_sexp, SEXP indices_sexp){
5586BEGIN_CPP11
5587 arrow::r::Input<const std::shared_ptr<arrow::Table>&>::type table(table_sexp);
5588 arrow::r::Input<const std::vector<int>&>::type indices(indices_sexp);
5589 return cpp11::as_sexp(Table__SelectColumns(table, indices));
5590END_CPP11
5591}
5592// table.cpp
5593bool all_record_batches(SEXP lst);
5594extern "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