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

Function _arrow_Table__from_dots

r/src/arrowExports.cpp:4690–4697  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4688// r_to_arrow.cpp
4689std::shared_ptr<arrow::Table> Table__from_dots(SEXP lst, SEXP schema_sxp, bool use_threads);
4690extern "C" SEXP _arrow_Table__from_dots(SEXP lst_sexp, SEXP schema_sxp_sexp, SEXP use_threads_sexp){
4691BEGIN_CPP11
4692 arrow::r::Input<SEXP>::type lst(lst_sexp);
4693 arrow::r::Input<SEXP>::type schema_sxp(schema_sxp_sexp);
4694 arrow::r::Input<bool>::type use_threads(use_threads_sexp);
4695 return cpp11::as_sexp(Table__from_dots(lst, schema_sxp, use_threads));
4696END_CPP11
4697}
4698// r_to_arrow.cpp
4699SEXP vec_to_Array(SEXP x, SEXP s_type);
4700extern "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