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

Function _arrow_Table__RenameColumns

r/src/arrowExports.cpp:5491–5497  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5489// table.cpp
5490std::shared_ptr<arrow::Table> Table__RenameColumns(const std::shared_ptr<arrow::Table>& table, const std::vector<std::string>& names);
5491extern "C" SEXP _arrow_Table__RenameColumns(SEXP table_sexp, SEXP names_sexp){
5492BEGIN_CPP11
5493 arrow::r::Input<const std::shared_ptr<arrow::Table>&>::type table(table_sexp);
5494 arrow::r::Input<const std::vector<std::string>&>::type names(names_sexp);
5495 return cpp11::as_sexp(Table__RenameColumns(table, names));
5496END_CPP11
5497}
5498// table.cpp
5499std::shared_ptr<arrow::Table> Table__Slice1(const std::shared_ptr<arrow::Table>& table, R_xlen_t offset);
5500extern "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