| 860 | } |
| 861 | |
| 862 | constexpr void AccrueReadValues(size_type to_read) noexcept { |
| 863 | ARROW_DCHECK_LE(to_read, values_remaining()); |
| 864 | values_read_ += to_read; |
| 865 | } |
| 866 | |
| 867 | constexpr size_type null_count() const noexcept { return null_count_; } |
| 868 |
no outgoing calls
no test coverage detected