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

Method RunGetBatch

cpp/src/arrow/util/rle_encoding_internal.h:504–508  ·  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

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) {
505 return std::visit(
506 [&](auto& dec) { return dec.GetBatch(out, batch_size, value_bit_width_); },
507 decoder_);
508 }
509
510 /// Utility methods for retrieving spaced values.
511 template <typename Converter>

Callers

nothing calls this directly

Calls 1

GetBatchMethod · 0.45

Tested by

no test coverage detected