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

Method values_remaining

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

Source from the content-addressed store, hash-verified

855 constexpr size_type values_read() const noexcept { return values_read_; }
856
857 constexpr size_type values_remaining() const noexcept {
858 ARROW_DCHECK_LE(values_read_, values_count_);
859 return values_count_ - values_read_;
860 }
861
862 constexpr void AccrueReadValues(size_type to_read) noexcept {
863 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