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

Function ScalarApproxEquals

cpp/src/arrow/compare.cc:1183–1190  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1181}
1182
1183bool ScalarApproxEquals(const Scalar& left, const Scalar& right,
1184 const EqualOptions& options) {
1185 auto resolved_options = options;
1186 if (!options.atol()) {
1187 resolved_options = options.atol(kDefaultAbsoluteTolerance);
1188 }
1189 return ScalarEquals(left, right, resolved_options);
1190}
1191
1192namespace {
1193

Callers 1

ApproxEqualsMethod · 0.85

Calls 1

ScalarEqualsFunction · 0.85

Tested by

no test coverage detected