| 849 | constexpr size_type null_read() const noexcept { return null_read_; } |
| 850 | |
| 851 | constexpr size_type null_remaining() const noexcept { |
| 852 | ARROW_DCHECK_LE(null_read_, null_count_); |
| 853 | return null_count_ - null_read_; |
| 854 | } |
| 855 | |
| 856 | constexpr void AccrueReadNulls(size_type to_read) noexcept { |
| 857 | ARROW_DCHECK_LE(to_read, null_remaining()); |
no outgoing calls
no test coverage detected