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

Method RunGetBatch

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

Get a batch of values from the current run and return the number elements read.

Source from the content-addressed store, hash-verified

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) {
499 return std::visit(
500 [&](auto& dec) { return dec.GetBatch(out, batch_size, value_bit_width_); },
501 decoder_);
502 }
503
504 /// Call the parser with a single callable for all event types.
505 template <typename Callable>

Callers

nothing calls this directly

Calls 1

GetBatchMethod · 0.45

Tested by

no test coverage detected