\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.
| 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); } |
no test coverage detected