| 840 | } |
| 841 | |
| 842 | constexpr void AccrueReadValues(size_type to_read) noexcept { |
| 843 | ARROW_DCHECK_LE(to_read, values_remaining()); |
| 844 | values_read_ += to_read; |
| 845 | } |
| 846 | |
| 847 | constexpr size_type null_count() const noexcept { return null_count_; } |
| 848 |
no outgoing calls
no test coverage detected