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

Method run_remaining

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

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

Source from the content-addressed store, hash-verified

497
498 /// Return the number of values that are remaining in the current run.
499 rle_size_t run_remaining() const {
500 return std::visit([](const auto& dec) { return dec.remaining(); }, decoder_);
501 }
502
503 /// Get a batch of values from the current run and return the number elements read.
504 [[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