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

Function _arrow_Table__ColumnNames

r/src/arrowExports.cpp:5483–5488  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5481// table.cpp
5482std::vector<std::string> Table__ColumnNames(const std::shared_ptr<arrow::Table>& table);
5483extern "C" SEXP _arrow_Table__ColumnNames(SEXP table_sexp){
5484BEGIN_CPP11
5485 arrow::r::Input<const std::shared_ptr<arrow::Table>&>::type table(table_sexp);
5486 return cpp11::as_sexp(Table__ColumnNames(table));
5487END_CPP11
5488}
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){

Callers

nothing calls this directly

Calls 2

as_sexpFunction · 0.85
Table__ColumnNamesFunction · 0.85

Tested by

no test coverage detected