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

Function _arrow_Array__ApproxEquals

r/src/arrowExports.cpp:163–169  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

161// array.cpp
162bool Array__ApproxEquals(const std::shared_ptr<arrow::Array>& lhs, const std::shared_ptr<arrow::Array>& rhs);
163extern "C" SEXP _arrow_Array__ApproxEquals(SEXP lhs_sexp, SEXP rhs_sexp){
164BEGIN_CPP11
165 arrow::r::Input<const std::shared_ptr<arrow::Array>&>::type lhs(lhs_sexp);
166 arrow::r::Input<const std::shared_ptr<arrow::Array>&>::type rhs(rhs_sexp);
167 return cpp11::as_sexp(Array__ApproxEquals(lhs, rhs));
168END_CPP11
169}
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){

Callers

nothing calls this directly

Calls 2

as_sexpFunction · 0.85
Array__ApproxEqualsFunction · 0.85

Tested by

no test coverage detected