| 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()) { |
nothing calls this directly
no test coverage detected