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

Function _arrow_Table__RenameColumns

r/src/arrowExports.cpp:5448–5454  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5446// table.cpp
5447std::shared_ptr<arrow::Table> Table__RenameColumns(const std::shared_ptr<arrow::Table>& table, const std::vector<std::string>& names);
5448extern "C" SEXP _arrow_Table__RenameColumns(SEXP table_sexp, SEXP names_sexp){
5449BEGIN_CPP11
5450 arrow::r::Input<const std::shared_ptr<arrow::Table>&>::type table(table_sexp);
5451 arrow::r::Input<const std::vector<std::string>&>::type names(names_sexp);
5452 return cpp11::as_sexp(Table__RenameColumns(table, names));
5453END_CPP11
5454}
5455// table.cpp
5456std::shared_ptr<arrow::Table> Table__Slice1(const std::shared_ptr<arrow::Table>& table, R_xlen_t offset);
5457extern "C" SEXP _arrow_Table__Slice1(SEXP table_sexp, SEXP offset_sexp){

Callers

nothing calls this directly

Calls 2

as_sexpFunction · 0.85
Table__RenameColumnsFunction · 0.85

Tested by

no test coverage detected