| 874 | } |
| 875 | |
| 876 | constexpr void AccrueReadNulls(size_type to_read) noexcept { |
| 877 | ARROW_DCHECK_LE(to_read, null_remaining()); |
| 878 | null_read_ += to_read; |
| 879 | } |
| 880 | |
| 881 | constexpr size_type total_remaining() const noexcept { |
| 882 | return values_remaining() + null_remaining(); |
no outgoing calls
no test coverage detected