\brief Return whether the COO indices are equal
| 174 | |
| 175 | /// \brief Return whether the COO indices are equal |
| 176 | bool Equals(const SparseCOOIndex& other) const { |
| 177 | return indices()->Equals(*other.indices()); |
| 178 | } |
| 179 | |
| 180 | inline Status ValidateShape(const std::vector<int64_t>& shape) const override { |
| 181 | ARROW_RETURN_NOT_OK(SparseIndex::ValidateShape(shape)); |