| 182 | } |
| 183 | |
| 184 | Result<std::shared_ptr<ArrayData>> ArrayData::ViewOrCopyTo( |
| 185 | const std::shared_ptr<MemoryManager>& to) const { |
| 186 | return CopyToImpl(*this, to, Buffer::ViewOrCopy); |
| 187 | } |
| 188 | |
| 189 | std::shared_ptr<ArrayData> ArrayData::Slice(int64_t off, int64_t len) const { |
| 190 | ARROW_CHECK_LE(off, length) << "Slice offset (" << off |
nothing calls this directly
no test coverage detected