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

Function _arrow_Array__Diff

r/src/arrowExports.cpp:172–178  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

170// array.cpp
171std::string Array__Diff(const std::shared_ptr<arrow::Array>& lhs, const std::shared_ptr<arrow::Array>& rhs);
172extern "C" SEXP _arrow_Array__Diff(SEXP lhs_sexp, SEXP rhs_sexp){
173BEGIN_CPP11
174 arrow::r::Input<const std::shared_ptr<arrow::Array>&>::type lhs(lhs_sexp);
175 arrow::r::Input<const std::shared_ptr<arrow::Array>&>::type rhs(rhs_sexp);
176 return cpp11::as_sexp(Array__Diff(lhs, rhs));
177END_CPP11
178}
179// array.cpp
180std::shared_ptr<arrow::ArrayData> Array__data(const std::shared_ptr<arrow::Array>& array);
181extern "C" SEXP _arrow_Array__data(SEXP array_sexp){

Callers

nothing calls this directly

Calls 2

as_sexpFunction · 0.85
Array__DiffFunction · 0.85

Tested by

no test coverage detected