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

Function Equals

cpp/src/arrow/array/statistics.h:163–166  ·  view source on GitHub ↗

\brief Check two \ref arrow::ArrayStatistics for equality \param other The \ref arrow::ArrayStatistics instance to compare against. \param equal_options Options used to compare double values for equality. \return True if the two \ref arrow::ArrayStatistics instances are equal; otherwise, false.

Source from the content-addressed store, hash-verified

161 /// \return True if the two \ref arrow::ArrayStatistics instances are equal; otherwise,
162 /// false.
163 bool Equals(const ArrayStatistics& other,
164 const EqualOptions& equal_options = EqualOptions::Defaults()) const {
165 return ArrayStatisticsEquals(*this, other, equal_options);
166 }
167
168 /// \brief Check two statistics for equality
169 bool operator==(const ArrayStatistics& other) const { return Equals(other); }

Callers 5

DiffMethod · 0.70
EqualsMethod · 0.70
operator==Function · 0.70
operator!=Function · 0.70
RunLengthOfEqualsFromMethod · 0.70

Calls 2

ArrayStatisticsEqualsFunction · 0.85
DefaultsFunction · 0.50

Tested by

no test coverage detected