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

Function _arrow_Table__from_dots

r/src/arrowExports.cpp:4733–4740  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4731// r_to_arrow.cpp
4732std::shared_ptr<arrow::Table> Table__from_dots(SEXP lst, SEXP schema_sxp, bool use_threads);
4733extern "C" SEXP _arrow_Table__from_dots(SEXP lst_sexp, SEXP schema_sxp_sexp, SEXP use_threads_sexp){
4734BEGIN_CPP11
4735 arrow::r::Input<SEXP>::type lst(lst_sexp);
4736 arrow::r::Input<SEXP>::type schema_sxp(schema_sxp_sexp);
4737 arrow::r::Input<bool>::type use_threads(use_threads_sexp);
4738 return cpp11::as_sexp(Table__from_dots(lst, schema_sxp, use_threads));
4739END_CPP11
4740}
4741// r_to_arrow.cpp
4742SEXP vec_to_Array(SEXP x, SEXP s_type);
4743extern "C" SEXP _arrow_vec_to_Array(SEXP x_sexp, SEXP s_type_sexp){

Callers

nothing calls this directly

Calls 2

as_sexpFunction · 0.85
Table__from_dotsFunction · 0.85

Tested by

no test coverage detected