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

Method run_remaining

cpp/src/arrow/util/rle_encoding_internal.h:493–495  ·  view source on GitHub ↗

Return the number of values that are remaining in the current run.

Source from the content-addressed store, hash-verified

491
492 /// Return the number of values that are remaining in the current run.
493 rle_size_t run_remaining() const {
494 return std::visit([](const auto& dec) { return dec.remaining(); }, decoder_);
495 }
496
497 /// Get a batch of values from the current run and return the number elements read.
498 [[nodiscard]] rle_size_t RunGetBatch(value_type* out, rle_size_t batch_size) {

Callers

nothing calls this directly

Calls 1

remainingMethod · 0.45

Tested by

no test coverage detected