| 218 | } |
| 219 | |
| 220 | std::string Array::Diff(const Array& other) const { |
| 221 | std::stringstream diff; |
| 222 | ARROW_IGNORE_EXPR(Equals(other, EqualOptions().diff_sink(&diff))); |
| 223 | return diff.str(); |
| 224 | } |
| 225 | |
| 226 | bool Array::Equals(const Array& arr, const EqualOptions& opts) const { |
| 227 | return ArrayEquals(*this, arr, opts); |