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

Method MakeBegin

cpp/src/arrow/util/ree_util.h:459–465  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

457 }
458
459 static Result<MergedRunsIterator> MakeBegin(const Left& left, const Right& right) {
460 if (left.length() != right.length()) {
461 return Status::Invalid(
462 "MergedRunsIterator expects RunEndEncodedArraySpans of the same length");
463 }
464 return MergedRunsIterator(left, right);
465 }
466
467 static Result<MergedRunsIterator> MakeEnd(const Left& left, const Right& right) {
468 if (left.length() != right.length()) {

Callers

nothing calls this directly

Calls 3

MergedRunsIteratorClass · 0.85
InvalidFunction · 0.50
lengthMethod · 0.45

Tested by

no test coverage detected