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

Function _arrow_Table__ColumnNames

r/src/arrowExports.cpp:5440–5445  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5438// table.cpp
5439std::vector<std::string> Table__ColumnNames(const std::shared_ptr<arrow::Table>& table);
5440extern "C" SEXP _arrow_Table__ColumnNames(SEXP table_sexp){
5441BEGIN_CPP11
5442 arrow::r::Input<const std::shared_ptr<arrow::Table>&>::type table(table_sexp);
5443 return cpp11::as_sexp(Table__ColumnNames(table));
5444END_CPP11
5445}
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){

Callers

nothing calls this directly

Calls 2

as_sexpFunction · 0.85
Table__ColumnNamesFunction · 0.85

Tested by

no test coverage detected