| 854 | } |
| 855 | |
| 856 | constexpr void AccrueReadNulls(size_type to_read) noexcept { |
| 857 | ARROW_DCHECK_LE(to_read, null_remaining()); |
| 858 | null_read_ += to_read; |
| 859 | } |
| 860 | |
| 861 | constexpr size_type total_remaining() const noexcept { |
| 862 | return values_remaining() + null_remaining(); |
no outgoing calls
no test coverage detected