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

Function _arrow_Scalar__ApproxEquals

r/src/arrowExports.cpp:5260–5266  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5258// scalar.cpp
5259bool Scalar__ApproxEquals(const std::shared_ptr<arrow::Scalar>& lhs, const std::shared_ptr<arrow::Scalar>& rhs);
5260extern "C" SEXP _arrow_Scalar__ApproxEquals(SEXP lhs_sexp, SEXP rhs_sexp){
5261BEGIN_CPP11
5262 arrow::r::Input<const std::shared_ptr<arrow::Scalar>&>::type lhs(lhs_sexp);
5263 arrow::r::Input<const std::shared_ptr<arrow::Scalar>&>::type rhs(rhs_sexp);
5264 return cpp11::as_sexp(Scalar__ApproxEquals(lhs, rhs));
5265END_CPP11
5266}
5267// schema.cpp
5268std::shared_ptr<arrow::Schema> Schema__from_fields(const std::vector<std::shared_ptr<arrow::Field>>& fields);
5269extern "C" SEXP _arrow_Schema__from_fields(SEXP fields_sexp){

Callers

nothing calls this directly

Calls 2

as_sexpFunction · 0.85
Scalar__ApproxEqualsFunction · 0.85

Tested by

no test coverage detected