MCPcopy Create free account
hub / github.com/apache/arrow / Slice

Method Slice

cpp/src/arrow/array/array_base.cc:277–279  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

275}
276
277std::shared_ptr<Array> Array::Slice(int64_t offset, int64_t length) const {
278 return MakeArray(data_->Slice(offset, length));
279}
280
281std::shared_ptr<Array> Array::Slice(int64_t offset) const {
282 int64_t slice_length = data_->length - offset;

Callers

nothing calls this directly

Calls 2

MakeArrayFunction · 0.70
SliceClass · 0.70

Tested by

no test coverage detected