| 865 | constexpr size_type total_read() const noexcept { return values_read_ + null_read_; } |
| 866 | |
| 867 | constexpr bool is_fully_null() const noexcept { return values_remaining() == 0; } |
| 868 | |
| 869 | constexpr bool is_done() const noexcept { return total_remaining() == 0; } |
| 870 |