| 1146 | } |
| 1147 | |
| 1148 | bool ArrayEquals(const Array& left, const Array& right, const EqualOptions& opts) { |
| 1149 | if (left.length() != right.length()) { |
| 1150 | ARROW_IGNORE_EXPR(PrintDiff(left, right, opts.diff_sink())); |
| 1151 | return false; |
| 1152 | } |
| 1153 | return ArrayRangeEquals(left, right, 0, left.length(), 0, opts); |
| 1154 | } |
| 1155 | |
| 1156 | bool ArrayApproxEquals(const Array& left, const Array& right, const EqualOptions& opts) { |
| 1157 | auto resolved_options = opts; |
no test coverage detected