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

Function _arrow_Table__columns

r/src/arrowExports.cpp:5432–5437  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5430// table.cpp
5431cpp11::list Table__columns(const std::shared_ptr<arrow::Table>& table);
5432extern "C" SEXP _arrow_Table__columns(SEXP table_sexp){
5433BEGIN_CPP11
5434 arrow::r::Input<const std::shared_ptr<arrow::Table>&>::type table(table_sexp);
5435 return cpp11::as_sexp(Table__columns(table));
5436END_CPP11
5437}
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){

Callers

nothing calls this directly

Calls 2

as_sexpFunction · 0.85
Table__columnsFunction · 0.85

Tested by

no test coverage detected