| 247 | } |
| 248 | |
| 249 | bool Array::RangeEquals(const Array& other, int64_t start_idx, int64_t end_idx, |
| 250 | int64_t other_start_idx, const EqualOptions& opts) const { |
| 251 | return ArrayRangeEquals(*this, other, start_idx, end_idx, other_start_idx, opts); |
| 252 | } |
| 253 | |
| 254 | bool Array::RangeEquals(const std::shared_ptr<Array>& other, int64_t start_idx, |
| 255 | int64_t end_idx, int64_t other_start_idx, |