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

Method values_remaining

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

Source from the content-addressed store, hash-verified

835 constexpr size_type values_read() const noexcept { return values_read_; }
836
837 constexpr size_type values_remaining() const noexcept {
838 ARROW_DCHECK_LE(values_read_, values_count_);
839 return values_count_ - values_read_;
840 }
841
842 constexpr void AccrueReadValues(size_type to_read) noexcept {
843 ARROW_DCHECK_LE(to_read, values_remaining());

Callers 2

RunGetSpacedFunction · 0.80
GetSpacedMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected