| 869 | constexpr size_type null_read() const noexcept { return null_read_; } |
| 870 | |
| 871 | constexpr size_type null_remaining() const noexcept { |
| 872 | ARROW_DCHECK_LE(null_read_, null_count_); |
| 873 | return null_count_ - null_read_; |
| 874 | } |
| 875 | |
| 876 | constexpr void AccrueReadNulls(size_type to_read) noexcept { |
| 877 | ARROW_DCHECK_LE(to_read, null_remaining()); |
no outgoing calls
no test coverage detected